aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-04-05 18:58:57 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-04-05 18:58:57 +0300
commit076cbfbe0b1fb1535d2718f9cfc0d839a44d691e (patch)
tree3379bc8c6a63c187e1a1a31a061de6ffe4a40d19
parent3ed130516767b3543d07b7c704c40783ebbc36b7 (diff)
downloadlibmicrohttpd-076cbfbe0b1fb1535d2718f9cfc0d839a44d691e.tar.gz
libmicrohttpd-076cbfbe0b1fb1535d2718f9cfc0d839a44d691e.zip
daemon.c: Removed useless extra ";"
-rw-r--r--src/microhttpd/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index c2bd59f8..8a9df765 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3269,7 +3269,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
3269 } 3269 }
3270#endif /* EPOLL_SUPPORT */ 3270#endif /* EPOLL_SUPPORT */
3271 3271
3272 have_timeout = false;; 3272 have_timeout = false;
3273 earliest_deadline = 0; /* avoid compiler warnings */ 3273 earliest_deadline = 0; /* avoid compiler warnings */
3274 for (pos = daemon->manual_timeout_tail; NULL != pos; pos = pos->prevX) 3274 for (pos = daemon->manual_timeout_tail; NULL != pos; pos = pos->prevX)
3275 { 3275 {