clean up varargs macro definition
authorDavid Schleef <ds@schleef.org>
Wed, 3 Sep 2003 03:55:53 +0000 (03:55 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 3 Sep 2003 03:55:53 +0000 (03:55 +0000)
Original commit message from CVS:
clean up varargs macro definition

gst-libs/gst/media-info/media-info.c

index 067286c..4be9c24 100644 (file)
 static gboolean _gst_media_info_debug = TRUE;
 
 #ifdef G_HAVE_ISO_VARARGS
-
 #define GMI_DEBUG(...) \
-  { if (_gst_media_info_debug) { g_print ( __VA_ARGS__ ); }}
-
+  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