summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-01 21:56:30 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-01 21:56:30 +0000
commitfe7694f7a7957f448fcaf3610577d284f7b3d55d (patch)
tree0eb00e546066429bb85186aa81b7440e430ae1cf /libmpdemux/stream.c
parent56dbc658e45c8b4f9d430321e8df25a4c7da7baa (diff)
downloadmpv-fe7694f7a7957f448fcaf3610577d284f7b3d55d.tar.bz2
mpv-fe7694f7a7957f448fcaf3610577d284f7b3d55d.tar.xz
stream_control() returns int, not void
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17713 b3059339-0415-0410-9bf9-f77b7e298cf2
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);
}