summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/manager.c4
-rwxr-xr-xug-efl-engine/ug-efl-engine.c4
2 files changed, 4 insertions, 4 deletions
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);
}
}