[PATCH] basetransform: typo fix: remove unbalanced closing parenthesis in debug log

Yasushi SHOJI yashi at atmark-techno.com
Wed Mar 29 10:26:53 UTC 2017


This unbalanced closing parenthesis is leftover from the commit
8b739d91e7.  It used to wrap the caps but we don't seem to do that in
the current code.

So, just remove it.  No functionality has been changed.
---

Hi all,

I just noticed a typo while reading the base transform code.  It
doesn't no bug.  Just a debug log.


 libs/gst/base/gstbasetransform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c
index e10a32845..3157fb725 100644
--- a/libs/gst/base/gstbasetransform.c
+++ b/libs/gst/base/gstbasetransform.c
@@ -1797,7 +1797,7 @@ gst_base_transform_get_unit_size (GstBaseTransform * trans, GstCaps * caps,
   bclass = GST_BASE_TRANSFORM_GET_CLASS (trans);
   res = bclass->get_unit_size (trans, caps, size);
   GST_DEBUG_OBJECT (trans,
-      "caps %" GST_PTR_FORMAT ") has unit size %" G_GSIZE_FORMAT ", res %s",
+      "caps %" GST_PTR_FORMAT " has unit size %" G_GSIZE_FORMAT ", res %s",
       caps, *size, res ? "TRUE" : "FALSE");
 
   if (res) {
-- 
2.11.0



More information about the gstreamer-devel mailing list