]> git.sesse.net Git - vlc/commitdiff
s/(void)p_e;/VLC_UNUSED(p_e);/
authorJP Dinger <jpd@m2x.nl>
Fri, 6 Mar 2009 12:22:27 +0000 (13:22 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 11 Mar 2009 23:39:16 +0000 (00:39 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
src/control/media_list.c

index eb1b1768e33eb11f1b9ee83aa3e77fff9e1ea560..e043c4ccd2ce942acf1329789b7dde2b0f260ef9 100644 (file)
@@ -343,7 +343,7 @@ void _libvlc_media_list_add_media(
                                    libvlc_media_t * p_md,
                                    libvlc_exception_t * p_e )
 {
-    (void)p_e;
+    VLC_UNUSED(p_e);
     libvlc_media_retain( p_md );
 
     notify_item_addition( p_mlist, p_md, vlc_array_count( &p_mlist->items ),
@@ -375,7 +375,7 @@ void _libvlc_media_list_insert_media(
                                    int index,
                                    libvlc_exception_t * p_e )
 {
-    (void)p_e;
+    VLC_UNUSED(p_e);
     libvlc_media_retain( p_md );
 
     notify_item_addition( p_mlist, p_md, index, EventWillHappen );