Commit 1acb8064 authored by Rafaël Carré's avatar Rafaël Carré

don't compare signed with unsigned

parent 395deda2
...@@ -165,7 +165,7 @@ void E_(CloseMux)( vlc_object_t *p_this ) ...@@ -165,7 +165,7 @@ void E_(CloseMux)( vlc_object_t *p_this )
{ {
sout_mux_t *p_mux = (sout_mux_t*)p_this; sout_mux_t *p_mux = (sout_mux_t*)p_this;
sout_mux_sys_t *p_sys = p_mux->p_sys; sout_mux_sys_t *p_sys = p_mux->p_sys;
int i; unsigned int i;
if( av_write_trailer( p_sys->oc ) < 0 ) if( av_write_trailer( p_sys->oc ) < 0 )
{ {
......
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