vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sat Jul 25 13:28:26 2015 +0300| [76f555de870609ce4819fd6931219a51cd14a611] | committer: Rémi Denis-Courmont
stream: fix stream_Control(SET_POSITION) > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76f555de870609ce4819fd6931219a51cd14a611 --- src/input/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/stream.c b/src/input/stream.c index dfc1604..c12ed1a 100644 --- a/src/input/stream.c +++ b/src/input/stream.c @@ -493,7 +493,7 @@ int stream_Control( stream_t *s, int i_query, ... ) return VLC_EGENERIC; va_start( args, i_query ); - i_result = s->pf_control( s, i_query, args ); + i_result = stream_vaControl( s, i_query, args ); va_end( args ); return i_result; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
