From 2960ad0444e53ab56a1ff0a6ce94c88a9ec3516b Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 3 Sep 2003 03:56:58 +0000 Subject: Fix to handle iso-style variable argument macros (#121175) Original commit message from CVS: Fix to handle iso-style variable argument macros (#121175) --- gst-libs/gst/media-info/media-info.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/media-info/media-info.c b/gst-libs/gst/media-info/media-info.c index 4e8f56b36..634a9f45f 100644 --- a/gst-libs/gst/media-info/media-info.c +++ b/gst-libs/gst/media-info/media-info.c @@ -22,8 +22,21 @@ #include "media-info.h" static gboolean _gst_media_info_debug = TRUE; + +#ifdef G_HAVE_ISO_VARARGS +#define GMI_DEBUG(...) \ + G_STMT_START { \ + if (_gst_media_info_debug) { g_print ( __VA_ARGS__ ); } \ + } G_STMT_END +#elif defined(G_HAVE_GNUC_VARARGS) #define GMI_DEBUG(format, args...) \ - { if (_gst_media_info_debug) { g_print ( format , ## args ); }} + G_STMT_START { \ + if (_gst_media_info_debug) { g_print ( format , ## args ); } \ + } G_STMT_END +#else +#error Variable argument macros not supported by compiler +#endif + struct GstMediaInfoPriv { -- cgit v1.2.1