Fix 64bit build break 15/203215/2
authorhyunho <hhstark.kang@samsung.com>
Thu, 11 Apr 2019 00:52:09 +0000 (09:52 +0900)
committerhyunho <hhstark.kang@samsung.com>
Thu, 11 Apr 2019 00:56:00 +0000 (09:56 +0900)
Change-Id: I4bddf681e2d7f2994a970fde22a6df87992373ab
Signed-off-by: hyunho <hhstark.kang@samsung.com>
notification-ex/stub.cc

index 081dc43..f6108ce 100644 (file)
@@ -853,7 +853,7 @@ extern "C" EXPORT_API int noti_ex_item_group_foreach(noti_ex_item_h handle,
   }
   GroupItem* p = static_cast<GroupItem*>(h->Get());
   list<shared_ptr<AbstractItem>> children = p->GetChildren();
-  LOGI("Retrive (%d)", children.size());
+  LOGI("Retrive (%zd)", children.size());
   for (auto i : children) {
     int ret = callback(
         static_cast<noti_ex_item_h>(new Handle(i)), data);