summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJihoon Kim <jihoon48.kim@samsung.com>2018-12-21 11:50:31 +0900
committerJihoon Kim <jihoon48.kim@samsung.com>2018-12-21 11:51:55 +0900
commit6f5203bf1818938ede1be67aa8b440eedbc8b388 (patch)
tree2311247a615bbfc5f5eed31fc8d6a9caa200d419
parent29442c114e3398449029f3a487a2149f635327a2 (diff)
downloadautofill-setting-6f5203bf1818938ede1be67aa8b440eedbc8b388.tar.gz
autofill-setting-6f5203bf1818938ede1be67aa8b440eedbc8b388.tar.bz2
autofill-setting-6f5203bf1818938ede1be67aa8b440eedbc8b388.zip
Fix dlog format issue
Change-Id: I52863210e017fa4a499a09896ad3120d374a6435 Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
-rw-r--r--src/autofill_setting_list_ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/autofill_setting_list_ui.cpp b/src/autofill_setting_list_ui.cpp
index d026f89..23c5910 100644
--- a/src/autofill_setting_list_ui.cpp
+++ b/src/autofill_setting_list_ui.cpp
@@ -194,10 +194,10 @@ set_autofill_service(int index)
if (group_radio)
elm_radio_value_set(group_radio, index);
- LOGD("Succeeded to set autofill service : %s", g_autofill_list[index].appid);
+ LOGD("Succeeded to set autofill service : %s", g_autofill_list[index].appid.c_str());
}
else {
- LOGW("Failed to set autofill service : %s\n", g_autofill_list[index].appid);
+ LOGW("Failed to set autofill service : %s\n", g_autofill_list[index].appid.c_str());
}
}