From e881056fd63dfa72f31424c67fa0eb35c1f92e0f Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 27 Feb 2013 04:47:10 +0000 Subject: thread_win32.c: suppress warning * thread_win32.c (native_sleep): constify local variable to suppress a false positive might-be-clobbered warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 49c143603b..d573632550 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -301,14 +301,8 @@ rb_w32_Sleep(unsigned long msec) static void native_sleep(rb_thread_t *th, struct timeval *tv) { - DWORD msec; - - if (tv) { - msec = tv->tv_sec * 1000 + tv->tv_usec / 1000; - } - else { - msec = INFINITE; - } + const DWORD msec = (tv) ? + (DWORD)(tv->tv_sec * 1000 + tv->tv_usec / 1000) : INFINITE; GVL_UNLOCK_BEGIN(); { -- cgit v1.2.1