commit bf024f2369cf5978918c8a09c80276c039ff9b17
parent 03a73cf1a64abaad40f56c60dfc4fa1501dab89b
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Mon, 25 Oct 2021 15:00:21 +0300
connection.c: fixed compiler warning
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -1227,7 +1227,8 @@ try_ready_chunked_body (struct MHD_Connection *connection,
"more data than requested)."));
return MHD_NO;
}
- chunk_hdr_len = MHD_uint32_to_strx (ret, chunk_hdr, sizeof(chunk_hdr));
+ chunk_hdr_len = MHD_uint32_to_strx ((uint32_t) ret, chunk_hdr,
+ sizeof(chunk_hdr));
mhd_assert (chunk_hdr_len != 0);
mhd_assert (chunk_hdr_len < sizeof(chunk_hdr));
*p_finished = false;