Commit ba7787e0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Signedness mismatch

parent 1a8b0cfe
...@@ -91,7 +91,7 @@ inline void VLCProfileSelector::fillProfilesCombo() ...@@ -91,7 +91,7 @@ inline void VLCProfileSelector::fillProfilesCombo()
} }
if( i_size == 0 ) 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], profileBox->addItem( video_profile_name_list[i],
video_profile_value_list[i] ); video_profile_value_list[i] );
......
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