Commit a64f8985 authored by JP Dinger's avatar JP Dinger Committed by Jean-Baptiste Kempf

s/(void)p_e;/VLC_UNUSED(p_e);/

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c4bf7a64
...@@ -343,7 +343,7 @@ void _libvlc_media_list_add_media( ...@@ -343,7 +343,7 @@ void _libvlc_media_list_add_media(
libvlc_media_t * p_md, libvlc_media_t * p_md,
libvlc_exception_t * p_e ) libvlc_exception_t * p_e )
{ {
(void)p_e; VLC_UNUSED(p_e);
libvlc_media_retain( p_md ); libvlc_media_retain( p_md );
notify_item_addition( p_mlist, p_md, vlc_array_count( &p_mlist->items ), notify_item_addition( p_mlist, p_md, vlc_array_count( &p_mlist->items ),
...@@ -375,7 +375,7 @@ void _libvlc_media_list_insert_media( ...@@ -375,7 +375,7 @@ void _libvlc_media_list_insert_media(
int index, int index,
libvlc_exception_t * p_e ) libvlc_exception_t * p_e )
{ {
(void)p_e; VLC_UNUSED(p_e);
libvlc_media_retain( p_md ); libvlc_media_retain( p_md );
notify_item_addition( p_mlist, p_md, index, EventWillHappen ); notify_item_addition( p_mlist, p_md, index, EventWillHappen );
......
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