From: Thomas Vander Stichele Date: Thu, 13 Oct 2005 17:20:44 +0000 (+0000) Subject: include header correctly; show me the name X-Git-Tag: RELEASE-0_9_4~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef8b2e27ec0908e369fde1638538eda682d6f2e8;p=platform%2Fupstream%2Fgstreamer.git include header correctly; show me the name Original commit message from CVS: include header correctly; show me the name --- diff --git a/gst/glib-compat.h b/gst/glib-compat.h index 568d3d8..fa439ed 100644 --- a/gst/glib-compat.h +++ b/gst/glib-compat.h @@ -5,7 +5,7 @@ * Copyright 2005 David Schleef */ -#include /* for g_warning */ +#include "gst_private.h" /* for g_warning */ #include #if GLIB_CHECK_VERSION (2, 6, 0) #include diff --git a/gst/gstpad.c b/gst/gstpad.c index 953332a..0e97b96 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -3524,8 +3524,9 @@ gst_pad_send_event (GstPad * pad, GstEvent * event) GST_CAT_DEBUG (GST_CAT_EVENT, "cleared flush flag"); break; default: - GST_CAT_DEBUG (GST_CAT_EVENT, "have event type %d on pad %s:%s", - GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (pad)); + GST_CAT_DEBUG (GST_CAT_EVENT, "have event type %s on pad %s:%s", + gst_event_type_get_name (GST_EVENT_TYPE (event)), + GST_DEBUG_PAD_NAME (pad)); if (GST_PAD_IS_FLUSHING (pad)) goto flushing;