Commit 37592036 authored by Dennis van Amerongen's avatar Dennis van Amerongen

* src/control/playlist.c: Fix typo vlc_mutex_unlokc -> vlc_mutex_unlock

parent 638c59db
...@@ -136,7 +136,7 @@ int libvlc_playlist_delete_item( libvlc_instance_t *p_instance, int i_id, ...@@ -136,7 +136,7 @@ int libvlc_playlist_delete_item( libvlc_instance_t *p_instance, int i_id,
} }
} }
libvlc_exception_raise( p_e, "item not found" ); libvlc_exception_raise( p_e, "item not found" );
vlc_mutex_unlokc( &PL->object_lock ); vlc_mutex_unlock( &PL->object_lock );
return VLC_EGENERIC; 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