diff --git a/io/io_waituntil2.c b/io/io_waituntil2.c index 43b03c4..3bc5776 100644 --- a/io/io_waituntil2.c +++ b/io/io_waituntil2.c @@ -47,7 +47,7 @@ int64 io_waituntil2(int64 milliseconds) { int n; struct timespec ts; ts.tv_sec=milliseconds/1000; ts.tv_nsec=(milliseconds%1000)*1000000; - if ((n=kevent(io_master,0,0,y,100,milliseconds?&ts:0))==-1) return -1; + if ((n=kevent(io_master,0,0,y,100,milliseconds!=-1?&ts:0))==-1) return -1; for (i=n-1; i>=0; --i) { io_entry* e=array_get(&io_fds,sizeof(io_entry),y[--n].ident); if (e) {