From 36556c46c0d8114d3966a26ee73449d9f8f026b0 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Thu, 2 Oct 2003 20:12:33 +0000 Subject: Corrected macro in medi-info-priv.h so that it follows ISO standards, and removed broken return from void function in... Original commit message from CVS: Corrected macro in medi-info-priv.h so that it follows ISO standards, and removed broken return from void function in navigation.c --- gst-libs/gst/media-info/media-info-priv.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gst-libs/gst/media-info') diff --git a/gst-libs/gst/media-info/media-info-priv.h b/gst-libs/gst/media-info/media-info-priv.h index 3e7a598c..0a7aa500 100644 --- a/gst-libs/gst/media-info/media-info-priv.h +++ b/gst-libs/gst/media-info/media-info-priv.h @@ -32,9 +32,18 @@ static gboolean _gmi_debug = TRUE; static gboolean _gmi_debug = FALSE; #endif +#ifdef G_HAVE_ISO_VARARGS + +#define GMI_DEBUG(...) \ + { if (_gmi_debug) { g_print ( __VA_ARGS__ ); }} + +#elif defined(G_HAVE_GNUC_VARARGS) + #define GMI_DEBUG(format, args...) \ { if (_gmi_debug) { g_print ( format , ## args ); }} +#endif + /* state machine enum; FIXME: can we move this to priv.c ? */ typedef enum -- cgit v1.2.1