From: Woochanlee Date: Mon, 10 Dec 2018 09:20:42 +0000 (+0900) Subject: Fix build error. X-Git-Tag: submit/tizen/20181218.080725^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6be5d4b4445c34bdf169ee88e0e8da0a388e2f9d;p=platform%2Fcore%2Fuifw%2Fui-viewmgr.git Fix build error. Dlog doesn't allow that there is no matched param with format. Change-Id: Icb35fbb1cb866571fd7b8b679301dbbb5ab06b27 --- diff --git a/src/lib/efl/mobile/c/ui_view.cpp b/src/lib/efl/mobile/c/ui_view.cpp index 05f40a4..90498f5 100644 --- a/src/lib/efl/mobile/c/ui_view.cpp +++ b/src/lib/efl/mobile/c/ui_view.cpp @@ -242,7 +242,7 @@ EAPI int ui_view_set_event_cb(ui_view *view, ui_view_event_type_e event_type, ui auto event_attr = dynamic_cast(view); if (!event_attr) { - LOGE("This view(%p) doesn't allow event callback?!"); + LOGE("This view(%p) doesn't allow event callback?!", view); return UI_VIEWMGR_ERROR_INVALID_PARAMETER; } diff --git a/src/lib/interface/UiIfaceViewmgr.cpp b/src/lib/interface/UiIfaceViewmgr.cpp index d1c711d..bd61438 100644 --- a/src/lib/interface/UiIfaceViewmgr.cpp +++ b/src/lib/interface/UiIfaceViewmgr.cpp @@ -555,7 +555,7 @@ int UiIfaceViewmgr::destroyView(UiIfaceView *view) if (view->getState() == UI_VIEW_STATE_DESTROY) { - LOGE("this view(%p) is already on destroying"); + LOGE("this view(%p) is already on destroying", view); return UI_VIEWMGR_ERROR_ALREADY_IN_PROGRESS; }