aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r--src/microhttpd/daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index ecce17b5..37dc214f 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -6020,8 +6020,8 @@ parse_options_va (struct MHD_Daemon *daemon,
6020 /* Next comparison could be always false on some platforms and whole branch will 6020 /* Next comparison could be always false on some platforms and whole branch will
6021 * be optimized out on these platforms. On others it will be compiled into real 6021 * be optimized out on these platforms. On others it will be compiled into real
6022 * check. */ 6022 * check. */
6023 else if (daemon->worker_pool_size >= (SIZE_MAX / sizeof (struct 6023 else if (daemon->worker_pool_size >=
6024 MHD_Daemon))) /* Compiler may warn on some platforms, ignore warning. */ 6024 (SIZE_MAX / sizeof (struct MHD_Daemon))) /* Compiler may warn on some platforms, ignore warning. */
6025 { 6025 {
6026#ifdef HAVE_MESSAGES 6026#ifdef HAVE_MESSAGES
6027 MHD_DLOG (daemon, 6027 MHD_DLOG (daemon,