Commit e5007130 authored by ogg.k.ogg.k's avatar ogg.k.ogg.k Committed by Jean-Paul Saman

fix stray semicolon (which would change program flow)

Signed-off-by: default avatarJean-Paul Saman <jpsaman@videolan.org>
parent d2bd568b
......@@ -1425,7 +1425,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
msg_rc( "Trying to add %s to playlist.", newval.psz_string );
if( playlist_AddInput( p_playlist, p_item,
PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
VLC_FALSE ) != VLC_SUCCESS );
VLC_FALSE ) != VLC_SUCCESS )
{
return VLC_EGENERIC;
}
......
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