mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread_win32.c (native_sleep): suppress warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5de144f3a5
commit
ccde88c1f1
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ rb_w32_Sleep(unsigned long msec)
|
|||
static void
|
||||
native_sleep(rb_thread_t *th, struct timeval *tv)
|
||||
{
|
||||
const DWORD msec = (tv) ?
|
||||
const volatile DWORD msec = (tv) ?
|
||||
(DWORD)(tv->tv_sec * 1000 + tv->tv_usec / 1000) : INFINITE;
|
||||
|
||||
GVL_UNLOCK_BEGIN();
|
||||
|
|
Loading…
Reference in a new issue