aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/response.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/response.c')
-rw-r--r--src/microhttpd/response.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index 14e036c8..c4b6c1e0 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -967,7 +967,7 @@ MHD_create_response_from_iovec (const struct MHD_IoVec *iov,
967#if defined(MHD_WINSOCK_SOCKETS) && defined(_WIN64) 967#if defined(MHD_WINSOCK_SOCKETS) && defined(_WIN64)
968 while (ULONG_MAX < element_size) 968 while (ULONG_MAX < element_size)
969 { 969 {
970 iov_copy[i_cp].iov_base = buf; 970 iov_copy[i_cp].iov_base = (char *) buf;
971 iov_copy[i_cp].iov_len = ULONG_MAX; 971 iov_copy[i_cp].iov_len = ULONG_MAX;
972 buf += ULONG_MAX; 972 buf += ULONG_MAX;
973 element_size -= ULONG_MAX; 973 element_size -= ULONG_MAX;