diff options
author | Sung-jae Park <nicesj.park@samsung.com> | 2015-05-12 13:43:13 +0900 |
---|---|---|
committer | Sung-jae Park <nicesj.park@samsung.com> | 2015-05-12 13:43:13 +0900 |
commit | cbfa6f24be3926280a35777f193c07689d6c4915 (patch) | |
tree | ba4506402e491e84c1bfdfd78eb6c2ff78768176 | |
parent | 1088b20756c23796c43c20e1fa97cb0b7fbb1e79 (diff) | |
download | com-core-cbfa6f24be3926280a35777f193c07689d6c4915.tar.gz com-core-cbfa6f24be3926280a35777f193c07689d6c4915.tar.bz2 com-core-cbfa6f24be3926280a35777f193c07689d6c4915.zip |
Fix the 64 bits build errorsubmit/tizen_mobile/20150514.062739submit/tizen_mobile/20150513.091454submit/tizen_mobile/20150513.043814submit/tizen_mobile/20150512.125148submit/tizen_mobile/20150512.044346submit/tizen_mobile/20150511.123737submit/tizen_common/20150604.888888accepted/tizen/mobile/20150514.135918tizen_3.0.2015.q2_common
Change-Id: I94cda4dc3b64a39dbb677334d1a0e5b0090c309b
-rw-r--r-- | src/com-core_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |