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 83110dd3..faf12c08 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -5695,7 +5695,7 @@ parse_options_va (struct MHD_Daemon *daemon,
5695#endif 5695#endif
5696 daemon->worker_pool_size = 0; 5696 daemon->worker_pool_size = 0;
5697 } 5697 }
5698#if (0 == (UINT_MAX + 0)) || (UINT_MAX >= (SIZE_MAX / (64 * 1024))) 5698#if SIZEOF_UNSIGNED_INT >= (SIZEOF_SIZE_T - 2)
5699 /* Next comparison could be always false on some platforms and whole branch will 5699 /* Next comparison could be always false on some platforms and whole branch will
5700 * be optimized out on these platforms. On others it will be compiled into real 5700 * be optimized out on these platforms. On others it will be compiled into real
5701 * check. */ 5701 * check. */
@@ -5709,7 +5709,7 @@ parse_options_va (struct MHD_Daemon *daemon,
5709#endif 5709#endif
5710 return MHD_NO; 5710 return MHD_NO;
5711 } 5711 }
5712#endif /* (UINT_MAX >= (SIZE_MAX/(64*1024))) */ 5712#endif /* SIZEOF_UNSIGNED_INT >= (SIZEOF_SIZE_T - 2) */
5713 else 5713 else
5714 { 5714 {
5715 if (0 == (daemon->options & MHD_USE_INTERNAL_POLLING_THREAD)) 5715 if (0 == (daemon->options & MHD_USE_INTERNAL_POLLING_THREAD))