libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 159bbfd5c2057774e1305eef9ad1ec0611575c7f
parent 83f9a5d79d4617e6d96b1e469087cf4b83d6d90f
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Fri, 27 Oct 2023 10:57:37 +0300

daemon: muted possible compiler warning

Diffstat:
Msrc/microhttpd/daemon.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -3854,7 +3854,7 @@ MHD_accept_connection (struct MHD_Daemon *daemon) * but suppression failed and SIGPIPE cannot be suppressed with send(). */ if (! daemon->sigpipe_blocked) { - MHD_socket_close_ (s); + (void) MHD_socket_close_ (s); return MHD_NO; } #endif /* MSG_NOSIGNAL */