[vlc-devel] commit: Remove GCCism ( Rémi Denis-Courmont )

git version control git at videolan.org
Wed Aug 13 20:45:23 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Wed Aug 13 21:42:41 2008 +0300| [71849c06eaa1ec56d66c825105a302c33e36a7b5] | committer: Rémi Denis-Courmont 

Remove GCCism

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

 modules/access/vcdx/vcdplayer.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/access/vcdx/vcdplayer.h b/modules/access/vcdx/vcdplayer.h
index 3e894f4..21f77e6 100644
--- a/modules/access/vcdx/vcdplayer.h
+++ b/modules/access/vcdx/vcdplayer.h
@@ -53,8 +53,8 @@
 #define dbg_print(mask, s, args...)
 #endif
 
-#define LOG_ERR(args...)  msg_Err( p_access, args )
-#define LOG_WARN(args...) msg_Warn( p_access, args )
+#define LOG_ERR(...)  msg_Err( p_access, __VA_ARGS__ )
+#define LOG_WARN(...) msg_Warn( p_access, __VA_ARGS__ )
 
 /*------------------------------------------------------------------
   General definitions and structures.




More information about the vlc-devel mailing list