diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index a94b8ea4..9cab1dc2 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -709,7 +709,10 @@ io_loop(void) continue; } else - timo.tv_sec = tout - now; + { + timo.tv_sec = tout - now; + timo.tv_usec = 0; + } hi = 0; WALK_LIST(n, sock_list)