basetransform: fix typo in debug log output
authorYasushi SHOJI <yashi@atmark-techno.com>
Wed, 29 Mar 2017 10:26:53 +0000 (19:26 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 19 Apr 2017 08:21:32 +0000 (09:21 +0100)
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.

https://bugzilla.gnome.org/show_bug.cgi?id=781484

libs/gst/base/gstbasetransform.c

index e10a328..3157fb7 100644 (file)
@@ -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) {