]> git.sesse.net Git - vlc/commitdiff
Signedness mismatch
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Dec 2009 10:53:01 +0000 (12:53 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 5 Dec 2009 10:53:01 +0000 (12:53 +0200)
modules/gui/qt4/components/sout/profile_selector.cpp

index b97c956b6a37cdade2fcc693654b7a574baabda4..ef8d1d3c79baeef984b8252a6769d5c8cfcf1409 100644 (file)
@@ -91,7 +91,7 @@ inline void VLCProfileSelector::fillProfilesCombo()
     }
     if( i_size == 0 )
     {
-        for( int i = 0; i < NB_PROFILE; i++ )
+        for( size_t i = 0; i < NB_PROFILE; i++ )
         {
             profileBox->addItem( video_profile_name_list[i],
                                  video_profile_value_list[i] );