From 694b7ee9126e6252bcfe3a6912f902d0dcff8367 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 21 Jun 2002 14:35:45 +0000 Subject: [PATCH] cleanups Original commit message from CVS: cleanups --- gst/gstcaps.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/gstcaps.c b/gst/gstcaps.c index d33fc9c997..8e1b21469c 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -156,7 +156,8 @@ gst_caps_debug (GstCaps *caps, const gchar *label) { GST_DEBUG_ENTER ("caps debug: %s", label); while (caps) { - GST_DEBUG (GST_CAT_CAPS, "caps: %p %s %s", caps, caps->name, gst_caps_get_mime (caps)); + GST_DEBUG (GST_CAT_CAPS, "caps: %p %s %s (%sfixed)", caps, caps->name, gst_caps_get_mime (caps), + caps->fixed ? "" : "NOT "); if (caps->properties) { gst_props_debug (caps->properties);