summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhyunho <hhstark.kang@samsung.com>2019-04-11 09:52:09 +0900
committerhyunho <hhstark.kang@samsung.com>2019-04-11 09:56:00 +0900
commit55acdf2b1c77c83328609785adfb353eb687228f (patch)
tree85fa04036110391648abd8a55104d53962e0c8bd
parent33ea1b25914b660e827ea0bd1d5d41d1c3896c10 (diff)
downloadnotification-55acdf2b1c77c83328609785adfb353eb687228f.tar.gz
notification-55acdf2b1c77c83328609785adfb353eb687228f.tar.bz2
notification-55acdf2b1c77c83328609785adfb353eb687228f.zip
Fix 64bit build break
Change-Id: I4bddf681e2d7f2994a970fde22a6df87992373ab Signed-off-by: hyunho <hhstark.kang@samsung.com>
-rw-r--r--notification-ex/stub.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/notification-ex/stub.cc b/notification-ex/stub.cc
index 081dc43..f6108ce 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<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);