diff options
author | Hyunbin Lee <hyunbin.lee@samsung.com> | 2013-11-04 16:41:57 +0900 |
---|---|---|
committer | Hyunbin Lee <hyunbin.lee@samsung.com> | 2013-11-04 16:41:57 +0900 |
commit | 74039c0ded55c0f2e4fe697a37e6dbe4e0d1bebc (patch) | |
tree | 6c4986611876fadea4c81f244743a537bb069d81 | |
parent | f1f526ce88a189a86b7da95bd8079e50c3155d4c (diff) | |
download | env-config-74039c0ded55c0f2e4fe697a37e6dbe4e0d1bebc.tar.gz env-config-74039c0ded55c0f2e4fe697a37e6dbe4e0d1bebc.tar.bz2 env-config-74039c0ded55c0f2e4fe697a37e6dbe4e0d1bebc.zip |
Reduce file size
Change-Id: I987147db60cb9591c0965580fe0549dd60dfd298
Signed-off-by: Hyunbin Lee <hyunbin.lee@samsung.com>
-rw-r--r-- | src/osp-env-config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osp-env-config.c b/src/osp-env-config.c index ded97d7..b42c102 100644 --- a/src/osp-env-config.c +++ b/src/osp-env-config.c @@ -210,7 +210,7 @@ static int mount_native_paths(const char* app_rootpath) { int i = 0; - static const struct _path_info mount_info[] = + const struct _path_info mount_info[] = { //{ "/bin", "./bin" }, { "/csa", "./csa" }, @@ -271,7 +271,7 @@ mount_osp_internal_paths(const char* app_rootpath, const char* pkgid) { "\0", "./data/Share" }, { "\0", "./data/Share2" } }; - static const struct _path_info mount_info2[] = + const struct _path_info mount_info2[] = { { "/opt/usr/share/.osp-compat/share", "./Share" }, { "/opt/usr/share/.osp-compat/share2", "./Share2" }, @@ -333,7 +333,7 @@ static int mount_linux_paths(const char* app_rootpath) { int i = 0; - static const struct _path_info mount_info[] = + const struct _path_info mount_info[] = { { "/bin", "./bin" }, { "/csa", "./csa" }, @@ -410,7 +410,7 @@ create_osp_external_paths(const char* app_rootpath, const char* pkgid) char osp_ext_apps_pkgid_share2_path[PATH_MAX] = {0, }; char osp_ext_share_pkgid_path[PATH_MAX] = {0, }; char osp_ext_share2_pkgid_path[PATH_MAX] = {0, }; - static const struct _dir_info external_dirs1[] = + const struct _dir_info external_dirs1[] = { { "./HomeExt", 0000, 0 }, { "./ShareExt", 0000, 0 }, |