From b9cb52a2c2af4fb76b284298ef4e9b61e9d69965 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Fri, 26 Feb 2010 09:29:23 +0200 Subject: [PATCH] debugutils: fix case of pad flag Due to a typo the code was always showing the flag as 's' (lower case). Fixes #611075 --- gst/gstdebugutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstdebugutils.c b/gst/gstdebugutils.c index aac2807..12ee17b 100644 --- a/gst/gstdebugutils.c +++ b/gst/gstdebugutils.c @@ -166,7 +166,7 @@ debug_dump_pad (GstPad * pad, const gchar * color_name, pad_flags[0] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKED) ? 'B' : 'b'; pad_flags[1] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_FLUSHING) ? 'F' : 'f'; pad_flags[2] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_IN_GETCAPS) ? 'G' : 'g'; - pad_flags[3] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_IN_SETCAPS) ? 's' : 's'; + pad_flags[3] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_IN_SETCAPS) ? 'S' : 's'; pad_flags[4] = GST_OBJECT_FLAG_IS_SET (pad, GST_PAD_BLOCKING) ? 'B' : 'b'; pad_flags[5] = '\0'; -- 2.7.4