Commit a5d25b9d authored by Gildas Bazin's avatar Gildas Bazin

* src/playlist/*: shut up a couple of compiler warnings.

parent 85ec0d84
......@@ -696,7 +696,7 @@ int playlist_LockClear( playlist_t *p_playlist )
{
int i_ret;
vlc_mutex_lock( &p_playlist->object_lock );
playlist_Clear( p_playlist );
i_ret = playlist_Clear( p_playlist );
vlc_mutex_unlock( &p_playlist->object_lock );
return i_ret;
}
......
......@@ -138,8 +138,8 @@ int playlist_ViewDump( playlist_t *p_playlist, playlist_view_t *p_view )
#ifdef PLAYLIST_DEBUG
msg_Dbg( p_playlist, "dumping view %i",p_view->i_id );
playlist_NodeDump( p_playlist,p_view->p_root, 1 );
return VLC_SUCCESS;
#endif
return VLC_SUCCESS;
}
/**
......
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