summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/stream.c')
-rw-r--r--libmpdemux/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c
index 8b4b21fd14..1175b2e048 100644
--- a/libmpdemux/stream.c
+++ b/libmpdemux/stream.c
@@ -347,7 +347,7 @@ void stream_reset(stream_t *s){
//stream_seek(s,0);
}
-void stream_control(stream_t *s, int cmd, void *arg){
+int stream_control(stream_t *s, int cmd, void *arg){
if(!s->control) return STREAM_UNSUPORTED;
return s->control(s, cmd, arg);
}