Comment on conversion
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 29 Dec 2009 10:02:26 +0000 (11:02 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 29 Dec 2009 10:02:26 +0000 (11:02 +0100)
src/eventl.c

index e8f6324..a34e76a 100644 (file)
@@ -117,8 +117,9 @@ int iochan_event_loop(IOCHAN *iochans)
                     w = p->max_idle;
                 else
                     w = ftime - now;
                     w = p->max_idle;
                 else
                     w = ftime - now;
+                /* tv_sec will be minimum wait.. */
                 if (w < tv_sec)
                 if (w < tv_sec)
-                    tv_sec = w;
+                    tv_sec = (int) w; /* can hold it because w < tv_sec */
             }
             fds[i].fd = p->fd;
             fds[i].input_mask = input_mask;
             }
             fds[i].fd = p->fd;
             fds[i].input_mask = input_mask;