diff options
author | Stef Walter <stef@memberwebs.com> | 2006-01-28 21:52:02 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-01-28 21:52:02 +0000 |
commit | 2f68afaa50abf604c101b7c9c0b4ebfeb2b5d57a (patch) | |
tree | c97fee1a838be5d74a60b8f8a7a60c4242c25142 /common | |
parent | df69b00d717b3a4c6c0c8b9a968516c444d2664c (diff) |
Fix resends.
Diffstat (limited to 'common')
-rw-r--r-- | common/server-mainloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/server-mainloop.c b/common/server-mainloop.c index 6ea8985..9eefb6f 100644 --- a/common/server-mainloop.c +++ b/common/server-mainloop.c @@ -98,7 +98,7 @@ timeval_compare(struct timeval* t1, struct timeval* t2) ((((uint64_t)(tv).tv_sec) * 1000L) + (((uint64_t)(tv).tv_usec) / 1000L)) #define timeval_dump(tv) \ - (fprintf(stderr, "{ %d:%d }", (uint)((tv)->tv_sec), (uint)((tv)->tv_usec / 1000)) + (fprintf(stderr, "{ %d:%d }", (uint)((tv).tv_sec), (uint)((tv).tv_usec / 1000))) static int add_timer(int ms, int oneshot, server_timer_callback callback, void* arg) @@ -278,7 +278,7 @@ server_run() } /* Get soonest timer */ - if (!timeout || timeval_compare(timeout, &timcb->at) < 0) + if (!timeout || timeval_compare(&timcb->at, timeout) < 0) timeout = &timcb->at; timcb = timcb->next; |