]> git.sesse.net Git - vlc/commitdiff
Kill a Warning
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Jun 2008 01:28:08 +0000 (18:28 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Jun 2008 01:28:08 +0000 (18:28 -0700)
modules/demux/playlist/m3u.c

index 9f3cc2c13aeb32ebf5f963c7ccc615416c65410d..1a054a29f05d74b2ba202b6fed54520dc0924bc6 100644 (file)
@@ -189,7 +189,7 @@ static int Demux( demux_t *p_demux )
                 input_item_SetArtist( p_input, psz_artist );
 
             input_ItemAddSubItem( p_current_input, p_input );
-            for( unsigned i = 0; i < i_options; i++ )
+            for( int i = 0; i < i_options; i++ )
                 input_ItemAddOpt( p_input, ppsz_options[i], 0 );
             vlc_gc_decref( p_input );
             free( psz_mrl );