[vlc-commits] Qt: fix signedness comparison issue

Jean-Baptiste Kempf git at videolan.org
Sat May 14 13:06:49 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat May 14 12:55:53 2011 +0200| [2be2cb82c8b40ed555c847fc0db5a42ce4708e86] | committer: Jean-Baptiste Kempf

Qt: fix signedness comparison issue

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2be2cb82c8b40ed555c847fc0db5a42ce4708e86
---

 modules/gui/qt4/input_manager.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index d43c363..003f0fd 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -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 );
     }



More information about the vlc-commits mailing list