From: Sung-jae Park Date: Tue, 12 May 2015 04:43:13 +0000 (+0900) Subject: Fix the 64 bits build error X-Git-Tag: accepted/tizen/mobile/20150514.135918^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fappfw%2Fcom-core.git;a=commitdiff_plain;h=cbfa6f24be3926280a35777f193c07689d6c4915 Fix the 64 bits build error Change-Id: I94cda4dc3b64a39dbb677334d1a0e5b0090c309b --- diff --git a/src/com-core_thread.c b/src/com-core_thread.c index 9995477..9954e37 100644 --- a/src/com-core_thread.c +++ b/src/com-core_thread.c @@ -187,7 +187,7 @@ static inline void terminate_thread(struct tcb *tcb) if (status != 0) { ErrPrint("Join: %s\n", strerror(status)); } else { - ErrPrint("Thread returns: %d\n", (int)res); + ErrPrint("Thread returns: %p\n", res); } dlist_foreach_safe(tcb->chunk_list, l, n, chunk) {