Commit 2098113d authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

playlist: use get_current_status_node()

parent ec81311c
...@@ -109,7 +109,7 @@ static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args ...@@ -109,7 +109,7 @@ static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args
p_item = (playlist_item_t *)va_arg( args, playlist_item_t * ); p_item = (playlist_item_t *)va_arg( args, playlist_item_t * );
if ( p_node == NULL ) if ( p_node == NULL )
{ {
p_node = p_playlist->status.p_node; p_node = get_current_status_node( p_playlist );
assert( p_node ); assert( p_node );
} }
p_playlist->request.i_status = PLAYLIST_RUNNING; p_playlist->request.i_status = PLAYLIST_RUNNING;
......
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