From b73ea4b64ac0d7ad9666b4325d94f180849f97f3 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 19 Aug 2010 10:29:30 +0000 Subject: * thread_pthread.c (native_sleep): suppress a warning for platforms which time_t is int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ thread_pthread.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ce831222cd..26ffef94a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 19 19:28:47 2010 Tanaka Akira + + * thread_pthread.c (native_sleep): suppress a warning for platforms + which time_t is int. + Thu Aug 19 18:15:50 2010 NARUSE, Yui * tool/merger.rb: Add a tool to merge commits between branches. diff --git a/thread_pthread.c b/thread_pthread.c index e832b82fe1..e835bf81cd 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -612,7 +612,7 @@ native_sleep(rb_thread_t *th, struct timeval *tv) } } - thread_debug("native_sleep %ld\n", tv ? tv->tv_sec : -1); + thread_debug("native_sleep %ld\n", (long)(tv ? tv->tv_sec : -1)); GVL_UNLOCK_BEGIN(); { pthread_mutex_lock(&th->interrupt_lock); -- cgit v1.2.3