From 743c8a0cc4821606b3d36e05677ad6300dd3ebd1 Mon Sep 17 00:00:00 2001 From: DoHyun Pyun Date: Tue, 18 Dec 2018 09:18:57 +0900 Subject: [PATCH] Fix dlog format error Change-Id: Id40073335e0f255a4d63b8624e7ca31eb1ca1908 Signed-off-by: DoHyun Pyun --- src/bt-syspopup-w.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bt-syspopup-w.c b/src/bt-syspopup-w.c index 64f8c8f..ad6c2a6 100644 --- a/src/bt-syspopup-w.c +++ b/src/bt-syspopup-w.c @@ -1166,7 +1166,7 @@ void __bluetooth_layout_wearable_input_pop(bt_pincode_input_object *po) elm_naviframe_item_pop(po->naviframe); if (po->pincode && strlen(po->pincode) > 0 && po->ok_btn) { - BT_DBG("po->pincode : %s, strlen(po->pincode) : %d", po->pincode, strlen(po->pincode)); + BT_DBG("po->pincode : %s, strlen(po->pincode) : %zd", po->pincode, strlen(po->pincode)); elm_object_disabled_set(po->ok_btn, EINA_FALSE); } @@ -2010,7 +2010,7 @@ static int __bluetooth_launch_handler(struct bt_popup_appdata *ad, } default: - BT_ERR("Unknown event_type : %s", ad->event_type); + BT_ERR("Unknown event_type : %u", ad->event_type); return -1; } -- 2.7.4