Commit 4ca51e78 authored by Antoine Cellerier's avatar Antoine Cellerier

* fix signedness gcc warning

parent 673c5d8e
......@@ -912,7 +912,7 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
if( i_cm_size )
{
int64_t i_num, i_den;
int i_dst_num, i_dst_den;
unsigned int i_dst_num, i_dst_den;
for( i = 0; i < p_sys->i_track; i++ )
if( p_sys->track[i].i_cat == VIDEO_ES ) break;
......
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