]> git.sesse.net Git - vlc/commitdiff
Qt: fix signedness comparison issue
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 14 May 2011 10:55:53 +0000 (12:55 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 14 May 2011 11:06:21 +0000 (13:06 +0200)
modules/gui/qt4/input_manager.cpp

index d43c3634f082192fd0cf525455459581c5a75680..003f0fd316770a276b8bcf3e48bae69931c85ce9 100644 (file)
@@ -603,7 +603,7 @@ void InputManager::UpdateVout()
             emit voutChanged( b_video );
 
         /* Release the vout list */
-        for( int i = 0; i < i_vout; i++ )
+        for( size_t i = 0; i < i_vout; i++ )
             vlc_object_release( (vlc_object_t*)pp_vout[i] );
         free( pp_vout );
     }