Commit b4681ede authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Fix compiler warning about return -1 in a void function.

parent 6399a8e7
......@@ -191,7 +191,7 @@ void libvlc_audio_set_track( libvlc_input_t *p_input, int i_track,
int i;
if( !p_input_thread )
return -1;
return;
var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
for( i = 0; i < val_list.p_list->i_count; 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