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.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 56cd4538..fdc81ccc 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4456,8 +4456,8 @@ unescape_wrapper (void *cls,
4456 struct MHD_Connection *connection, 4456 struct MHD_Connection *connection,
4457 char *val) 4457 char *val)
4458{ 4458{
4459 (void)cls; /* Mute compiler warning. */ 4459 (void) cls; /* Mute compiler warning. */
4460 (void)connection; /* Mute compiler warning. */ 4460 (void) connection; /* Mute compiler warning. */
4461 return MHD_http_unescape (val); 4461 return MHD_http_unescape (val);
4462} 4462}
4463 4463
@@ -5425,6 +5425,7 @@ MHD_start_daemon_va (unsigned int flags,
5425 MHD_DLOG (daemon, _("Using debug build of libmicrohttpd.\n") ); 5425 MHD_DLOG (daemon, _("Using debug build of libmicrohttpd.\n") );
5426#endif /* HAVE_MESSAGES */ 5426#endif /* HAVE_MESSAGES */
5427#endif /* ! NDEBUG */ 5427#endif /* ! NDEBUG */
5428
5428 if ( (0 != (*pflags & MHD_USE_ITC)) && 5429 if ( (0 != (*pflags & MHD_USE_ITC)) &&
5429 (0 == daemon->worker_pool_size) ) 5430 (0 == daemon->worker_pool_size) )
5430 { 5431 {