Fix build error. 62/195062/1 accepted/tizen/unified/20181220.061725 submit/tizen/20181218.080725 submit/tizen/20181219.071252
authorWoochanlee <wc0917.lee@samsung.com>
Mon, 10 Dec 2018 09:20:42 +0000 (18:20 +0900)
committerWoochanlee <wc0917.lee@samsung.com>
Mon, 10 Dec 2018 09:22:43 +0000 (18:22 +0900)
Dlog doesn't allow that there is no matched param with format.

Change-Id: Icb35fbb1cb866571fd7b8b679301dbbb5ab06b27

src/lib/efl/mobile/c/ui_view.cpp
src/lib/interface/UiIfaceViewmgr.cpp

index 05f40a4d314d7ef73957a77c2c48809988d3040b..90498f516d29a1c77050b97e4384677606ef5975 100644 (file)
@@ -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<UiCommonViewCapi *>(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;
        }
 
index d1c711de451d742e353b959023dcacbf4ae2d1cf..bd61438e3c4c52c361d665c2fcdf5b28885ebb27 100644 (file)
@@ -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;
        }