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
This commit is contained in:
Brian Cameron 2003-10-02 20:12:33 +00:00
parent d9e4457faa
commit 36556c46c0
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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);
}
}