aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-01 14:51:58 +0100
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-01 14:52:13 +0100
commit43a35fd652680081e9e9cbab65a2e46a068c2884 (patch)
tree845fe707b5a465385c3f69d1f21f23e6920a7dea
parenteb9ec7fda1e30c21fdcb64ee986554e9e5c4eeeb (diff)
downloadlibmicrohttpd-43a35fd652680081e9e9cbab65a2e46a068c2884.tar.gz
W32: fixed compiler warning
-rw-r--r--src/microhttpd/daemon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 3acca120..c83d4e5b 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4499,6 +4499,7 @@ internal_run_from_select (struct MHD_Daemon *daemon,
(MHD_thread_handle_ID_is_current_thread_ (daemon->tid)));
mhd_assert (0 < fd_setsize);
+ (void) fd_setsize; /* Mute compiler warning */
#ifndef HAS_FD_SETSIZE_OVERRIDABLE
(void) fd_setsize; /* Mute compiler warning */
mhd_assert (((int) FD_SETSIZE) <= fd_setsize);