libmicrohttpd

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

commit ab284e1035f162a1dcee357b04121498c03b2645
parent 28ca87140129b554b5d77b55f422bddb8880b40a
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 16 May 2017 21:17:26 +0300

Fixed compiler warning.

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

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -3176,7 +3176,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) /* Response is not required anymore for this connection. */ if (NULL != connection->response) { - struct MHD_Response const *resp = connection->response; + struct MHD_Response * const resp = connection->response; connection->response = NULL; MHD_destroy_response (resp); }