From: hyunho Date: Thu, 11 Apr 2019 00:52:09 +0000 (+0900) Subject: Fix 64bit build break X-Git-Tag: submit/tizen/20190411.005731~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55acdf2b1c77c83328609785adfb353eb687228f;p=platform%2Fcore%2Fapi%2Fnotification.git Fix 64bit build break Change-Id: I4bddf681e2d7f2994a970fde22a6df87992373ab Signed-off-by: hyunho --- diff --git a/notification-ex/stub.cc b/notification-ex/stub.cc index 081dc434..f6108ce4 100644 --- a/notification-ex/stub.cc +++ b/notification-ex/stub.cc @@ -853,7 +853,7 @@ extern "C" EXPORT_API int noti_ex_item_group_foreach(noti_ex_item_h handle, } GroupItem* p = static_cast(h->Get()); list> children = p->GetChildren(); - LOGI("Retrive (%d)", children.size()); + LOGI("Retrive (%zd)", children.size()); for (auto i : children) { int ret = callback( static_cast(new Handle(i)), data);