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 +++++++++ gst-libs/gst/navigation/navigation.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/media-info/media-info-priv.h b/gst-libs/gst/media-info/media-info-priv.h index 3e7a598c3..0a7aa5009 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 diff --git a/gst-libs/gst/navigation/navigation.c b/gst-libs/gst/navigation/navigation.c index 4ae996d89..c503afe14 100644 --- a/gst-libs/gst/navigation/navigation.c +++ b/gst-libs/gst/navigation/navigation.c @@ -68,7 +68,7 @@ gst_navigation_send_event (GstNavigation *navigation, GstCaps *caps) GstNavigationClass *klass = GST_NAVIGATION_GET_CLASS (navigation); if (klass->send_event) { - return klass->send_event (navigation, caps); + klass->send_event (navigation, caps); } } -- cgit v1.2.1