[vlc-devel] commit: s/(void)p_e;/VLC_UNUSED(p_e);/ (JP Dinger )

git version control git at videolan.org
Thu Mar 12 00:39:43 CET 2009


vlc | branch: master | JP Dinger <jpd at m2x.nl> | Fri Mar  6 13:22:27 2009 +0100| [a64f8985842216d667317c2c5892ba3740a7034e] | committer: Jean-Baptiste Kempf 

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

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a64f8985842216d667317c2c5892ba3740a7034e
---

 src/control/media_list.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/control/media_list.c b/src/control/media_list.c
index eb1b176..e043c4c 100644
--- a/src/control/media_list.c
+++ b/src/control/media_list.c
@@ -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 );




More information about the vlc-devel mailing list