From: Hwankyu Jhun Date: Tue, 10 Oct 2017 00:46:05 +0000 (+0900) Subject: Fix wrong log formats X-Git-Tag: accepted/tizen/4.0/unified/20171010.064237~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F24%2F154224%2F1;p=platform%2Fcore%2Fappfw%2Fui-gadget-1.git Fix wrong log formats Change-Id: I06d6dfec909b7500c4c6d7e1f91a2e96052ca10f Signed-off-by: Hwankyu Jhun --- diff --git a/src/manager.c b/src/manager.c index 6510f23..8314c1a 100644 --- a/src/manager.c +++ b/src/manager.c @@ -926,7 +926,7 @@ int ugman_ug_destroying(ui_gadget_h ug) _DBG("ugman_ug_destroying start ug(%p)", ug); if (!ug || !ugman_ug_exist(ug)) { - _ERR("ugman_ug_destroying failed: Invalid ug(%p)"); + _ERR("ugman_ug_destroying failed: Invalid ug"); errno = EINVAL; return -1; } @@ -960,7 +960,7 @@ int ugman_ug_del(ui_gadget_h ug) _DBG("ugman_ug_del start ug(%p)", ug); if (!ug || !ugman_ug_exist(ug)) { - _ERR("ugman_ug_del failed: Invalid ug(%p)"); + _ERR("ugman_ug_del failed: Invalid ug"); errno = EINVAL; return -1; } diff --git a/ug-efl-engine/ug-efl-engine.c b/ug-efl-engine/ug-efl-engine.c index 1329dd2..4b3f43a 100755 --- a/ug-efl-engine/ug-efl-engine.c +++ b/ug-efl-engine/ug-efl-engine.c @@ -247,7 +247,7 @@ static void on_destroy(ui_gadget_h ug, ui_gadget_h t_ug, { if (!ug) return; - _DBG("\t ug=%p tug=%p layout_state=%d", ug, t_ug, ug->layout_state); + _DBG("ug=%p tug=%p layout_state=%d", ug, t_ug, ug->layout_state); evas_object_intercept_hide_callback_del(ug->layout, __on_hideonly_cb); @@ -284,7 +284,7 @@ static void on_destroy(ui_gadget_h ug, ui_gadget_h t_ug, __hide_finished); elm_object_item_del_cb_set(ug->effect_layout, __del_finished); } else { - _WRN("[UG Effect Plug-in] : layout state(%p) error!!", ug->layout_state); + _WRN("[UG Effect Plug-in] : layout state(%d) error!!", ug->layout_state); __del_effect_end(ug); } }