Commit 76f555de authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stream: fix stream_Control(SET_POSITION)

parent 5f08edfe
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment