Commit 22465279 authored by Rafaël Carré's avatar Rafaël Carré

Fix build with --disable-sout

Broken in 79ced312
parent 0b896ac1
...@@ -161,9 +161,9 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host, ...@@ -161,9 +161,9 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
assert (0); assert (0);
} }
int httpd_StreamSend (httpd_stream_t *stream, uint8_t *data, int count) int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
{ {
(void) stream; (void) data; (void) count; (void) stream; (void) p_block;
assert (0); assert (0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment