Fix a wrong function call 49/213649/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 9 Sep 2019 23:36:18 +0000 (08:36 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 9 Sep 2019 23:36:47 +0000 (08:36 +0900)
To get the value of VCONFKEY_VC_VOICE_TOUCH_AUTOMODE properly,
we use vconf_get_bool() instead of vconf_get_int().

Change-Id: Iaea54e74b6c8ea81083f1ea4d183a395630f74d5
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/efl_base/appcore_efl_base.c

index a4e2a04..dff9751 100644 (file)
@@ -199,7 +199,7 @@ static void __efl_app_init(int argc, char **argv, void *data)
                }
        }
 
-       vconf_get_int(VCONFKEY_VC_VOICE_TOUCH_AUTOMODE, &vt_automode);
+       vconf_get_bool(VCONFKEY_VC_VOICE_TOUCH_AUTOMODE, &vt_automode);
        if (vt_automode) {
                __vc_elm_thread = g_thread_new("vc-elm-loader",
                                __vc_elm_loader, NULL);