From: Antoine Cellerier Date: Wed, 28 Sep 2005 18:49:52 +0000 (+0000) Subject: * fix signedness gcc warning X-Git-Tag: 0.8.4~395 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4ca51e782b95a878f82d0a04f052cbae2de18bcc;p=vlc * fix signedness gcc warning --- diff --git a/modules/mux/asf.c b/modules/mux/asf.c index 10ffa04b17..95ec4fb6da 100644 --- a/modules/mux/asf.c +++ b/modules/mux/asf.c @@ -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;