summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c4
1 files changed, 2 insertions, 2 deletions
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;