aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-07-24 15:53:51 +0000
committerng0 <ng0@n0.is>2019-07-24 15:53:51 +0000
commite1807005969ccf5d0a9b53d9f8eb8f329e509e3e (patch)
tree09d597899692e633d447fc82476784acf801a2e1
parente072dbba655ff8ee52ecd00631b4732334320c93 (diff)
downloadlibmicrohttpd-e1807005969ccf5d0a9b53d9f8eb8f329e509e3e.tar.gz
libmicrohttpd-e1807005969ccf5d0a9b53d9f8eb8f329e509e3e.zip
fix failure to build.
-rw-r--r--src/microhttpd/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index b09425b4..03f8e192 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3425,8 +3425,8 @@ MHD_connection_handle_write (struct MHD_Connection *connection)
3425 [connection->write_buffer_send_offset], 3425 [connection->write_buffer_send_offset],
3426 connection->write_buffer_append_offset - 3426 connection->write_buffer_append_offset -
3427 connection->write_buffer_send_offset, 3427 connection->write_buffer_send_offset,
3428 response_body, 3428 connection->response->data,
3429 response_size); 3429 connection->response->data_buffer_size);
3430 } 3430 }
3431 3431
3432 if (ret < 0) 3432 if (ret < 0)