mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
basetransform: fix typo in debug log output
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
This commit is contained in:
parent
72e42f0ce9
commit
c423df49af
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue