From: Ji-hoon Lee Date: Wed, 24 Jul 2019 07:49:54 +0000 (+0900) Subject: Fix mismatch between log format and actual parameter X-Git-Tag: submit/tizen/20190806.020345~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F61%2F210761%2F4;p=platform%2Fcore%2Fuifw%2Fwakeup-engine-default.git Fix mismatch between log format and actual parameter Change-Id: Ibd663ab6d387df6e198c7ee6a2e25c4c5d87405f --- diff --git a/plugins/wakeup-manager/src/heap_tracer.cpp b/plugins/wakeup-manager/src/heap_tracer.cpp index 2fc256e..8d7b13d 100644 --- a/plugins/wakeup-manager/src/heap_tracer.cpp +++ b/plugins/wakeup-manager/src/heap_tracer.cpp @@ -121,7 +121,7 @@ HeapTracer::~HeapTracer() bool HeapTracer::Insert(void *ptr, std::string description, size_t size) { if (HEAP_TRACER_LOG_ENABLED) { - LOGD("Heap allocated %p [size %d] : %s", ptr, size, description.c_str()); + LOGD("Heap allocated %p [size %zu] : %s", ptr, size, description.c_str()); } AllocationEntry entry;