From 88270e77731076eff275f767c762de5b954fa78b Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 4 Sep 2013 14:41:38 +0000 Subject: win32.c: suppress warning * win32/win32.c (do_select): unconstify timeout as select() declares it non-const. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win32') diff --git a/win32/win32.c b/win32/win32.c index 15c6020dc8..d5bf292cdf 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2766,7 +2766,7 @@ is_invalid_handle(SOCKET sock) /* License: Artistic or GPL */ static int do_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex, - const struct timeval *timeout) + struct timeval *timeout) { int r = 0; @@ -2911,7 +2911,7 @@ rb_w32_select_with_thread(int nfds, fd_set *rd, fd_set *wr, fd_set *ex, { struct timeval rest; const struct timeval wait = {0, 10 * 1000}; // 10ms - const struct timeval zero = {0, 0}; // 0ms + struct timeval zero = {0, 0}; // 0ms for (;;) { if (th && rb_w32_check_interrupt(th) != WAIT_TIMEOUT) { r = -1; -- cgit v1.2.3