Fix error log message 70/212470/1
authorHwankyu Jhun <h.jhun@samsung.com>
Thu, 22 Aug 2019 01:46:01 +0000 (10:46 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Thu, 22 Aug 2019 01:46:01 +0000 (10:46 +0900)
Change-Id: I39ca41aeb806388c4e8a37ccf1c4c913668d133e
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/launchpad_loader.c

index 849b050..cf92185 100644 (file)
@@ -341,8 +341,8 @@ do_dlopen:
        handle = dlopen(argv[LOADER_ARG_PATH],
                        RTLD_LAZY | RTLD_GLOBAL | RTLD_NODELETE);
        if (handle == NULL) {
-               _E("dlopen failed(%s). Please complile with -fPIE and " \
-                               "link with -pie flag", dlerror());
+               _E("dlopen(%s) is failed. error(%s)",
+                               argv[LOADER_ARG_PATH], dlerror());
                goto do_exec;
        }