Commit d9d0e354 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

playlist/item.c: Avoid checking against false.

parent 1f45aa51
......@@ -641,7 +641,7 @@ static int DeleteInner( playlist_t * p_playlist, playlist_item_t *p_item,
/* Remove the item from its parent */
playlist_NodeRemoveItem( p_playlist, p_item, p_item->p_parent );
if( b_delay_deletion == VLC_FALSE )
if( !b_delay_deletion )
playlist_ItemDelete( p_item );
else
{
......
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