commit 067b6234073ee0c08d1b3d3c1022f8b4c8417a0d parent c6b2aee828babddce0b2a591240f639d9252239c Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Mon, 15 Aug 2022 15:31:26 +0300 daemon.c: cosmetics Diffstat:
| M | src/microhttpd/daemon.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -6020,8 +6020,8 @@ parse_options_va (struct MHD_Daemon *daemon, /* Next comparison could be always false on some platforms and whole branch will * be optimized out on these platforms. On others it will be compiled into real * check. */ - else if (daemon->worker_pool_size >= (SIZE_MAX / sizeof (struct - MHD_Daemon))) /* Compiler may warn on some platforms, ignore warning. */ + else if (daemon->worker_pool_size >= + (SIZE_MAX / sizeof (struct MHD_Daemon))) /* Compiler may warn on some platforms, ignore warning. */ { #ifdef HAVE_MESSAGES MHD_DLOG (daemon,