Commit 281e0776 authored by Steve Lhomme's avatar Steve Lhomme

mkv.cpp: fix a gcc compilation error

parent 3d831e04
...@@ -1158,7 +1158,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -1158,7 +1158,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
return VLC_SUCCESS; return VLC_SUCCESS;
case DEMUX_SET_POSITION: case DEMUX_SET_POSITION:
f = (double)va_arg( args, double, NULL ); f = (double)va_arg( args, double );
Seek( p_demux, -1, f, NULL ); Seek( p_demux, -1, f, NULL );
return VLC_SUCCESS; return VLC_SUCCESS;
......
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