Commit 2be2cb82 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix signedness comparison issue

parent 5fa3d992
......@@ -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 );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment