[vlc-commits] Fix build with --disable-sout
Rafaël Carré
git at videolan.org
Sat Sep 21 20:41:26 CEST 2013
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sat Sep 21 20:40:26 2013 +0200| [22465279a19d6d1ceae670076eca59822d99e63c] | committer: Rafaël Carré
Fix build with --disable-sout
Broken in 79ced312c75548037d641153bf3e7c092b71e3f8
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=22465279a19d6d1ceae670076eca59822d99e63c
---
src/missing.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/missing.c b/src/missing.c
index 73a401a..a19a798 100644
--- a/src/missing.c
+++ b/src/missing.c
@@ -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);
}
More information about the vlc-commits
mailing list