]> git.sesse.net Git - vlc/commitdiff
Fix build with --disable-sout
authorRafaël Carré <funman@videolan.org>
Sat, 21 Sep 2013 18:40:26 +0000 (20:40 +0200)
committerRafaël Carré <funman@videolan.org>
Sat, 21 Sep 2013 18:40:26 +0000 (20:40 +0200)
Broken in 79ced312c75548037d641153bf3e7c092b71e3f8

src/missing.c

index 73a401a1ee43585bade5843ee8f8b6e1170c0b56..a19a798e3bc0fd3580cb0ab983cb2649c41a04cd 100644 (file)
@@ -161,9 +161,9 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
     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);
 }