summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2017-02-21 16:56:52 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2017-02-21 02:57:06 -0800
commit39a3b2511500967768ec6412e4c894a18768a311 (patch)
tree51e9e04f3667ad644de9e1947389666e28c3a90d
parentd60fc9801c4cfb5155f3f472ec141ced0b7cf112 (diff)
downloadaul-1-39a3b2511500967768ec6412e4c894a18768a311.tar.gz
aul-1-39a3b2511500967768ec6412e4c894a18768a311.tar.bz2
aul-1-39a3b2511500967768ec6412e4c894a18768a311.zip
Fix bug about getting app root path
Change-Id: I258623afed30d3da08c7dea3c7dec1a4823a529a Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/aul_path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aul_path.c b/src/aul_path.c
index aeeeb4ef..6955b4a9 100644
--- a/src/aul_path.c
+++ b/src/aul_path.c
@@ -247,7 +247,7 @@ API const char *aul_get_app_root_path(void)
{
static char *path;
- return __get(&path, NULL, NULL, getuid(), __get_path);
+ return __get(&path, NULL, NULL, getuid(), __get_path_from_db);
}
API const char *aul_get_app_data_path(void)