[vlc-devel] commit: Signedness mismatch ( Rémi Denis-Courmont )
    git version control 
    git at videolan.org
       
    Sat Dec  5 11:59:26 CET 2009
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Dec  5 12:53:01 2009 +0200| [ba7787e00677d7f36fbceff2b50e2902aef0e75e] | committer: Rémi Denis-Courmont 
Signedness mismatch
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba7787e00677d7f36fbceff2b50e2902aef0e75e
---
 .../gui/qt4/components/sout/profile_selector.cpp   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/sout/profile_selector.cpp b/modules/gui/qt4/components/sout/profile_selector.cpp
index b97c956..ef8d1d3 100644
--- a/modules/gui/qt4/components/sout/profile_selector.cpp
+++ b/modules/gui/qt4/components/sout/profile_selector.cpp
@@ -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] );
    
    
More information about the vlc-devel
mailing list