diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-08-15 15:31:26 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-08-15 16:18:09 +0300 |
commit | 067b6234073ee0c08d1b3d3c1022f8b4c8417a0d (patch) | |
tree | da85771f3d2d21b171b4639da651cebb5ce476b2 | |
parent | c6b2aee828babddce0b2a591240f639d9252239c (diff) | |
download | libmicrohttpd-067b6234073ee0c08d1b3d3c1022f8b4c8417a0d.tar.gz libmicrohttpd-067b6234073ee0c08d1b3d3c1022f8b4c8417a0d.zip |
daemon.c: cosmetics
-rw-r--r-- | src/microhttpd/daemon.c | 4 |
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, |