Fix dlog format error 46/195746/1 accepted/tizen/unified/20181218.152413 submit/tizen/20181218.064258
authorDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 18 Dec 2018 00:18:57 +0000 (09:18 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 18 Dec 2018 00:18:57 +0000 (09:18 +0900)
Change-Id: Id40073335e0f255a4d63b8624e7ca31eb1ca1908
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
src/bt-syspopup-w.c

index 64f8c8f72455aa20c065ee976779bddae995da9e..ad6c2a69d36e5bc4ca18411dd9d8f12ee6b0c07d 100644 (file)
@@ -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;
        }