From 59441b36b676604d65f0efe83a26dbee9ab47eb1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 14 Jul 2011 12:45:33 +0100 Subject: [PATCH] baseparse: fix printf format in debug message --- libs/gst/base/gstbaseparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/base/gstbaseparse.c b/libs/gst/base/gstbaseparse.c index 8772aad1cc..59865c2775 100644 --- a/libs/gst/base/gstbaseparse.c +++ b/libs/gst/base/gstbaseparse.c @@ -1926,7 +1926,7 @@ gst_base_parse_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame) } else if (ret == GST_FLOW_OK) { if (parse->segment.rate > 0.0) { GST_LOG_OBJECT (parse, "pushing frame (%d bytes) now..", - GST_BUFFER_SIZE (buffer), gst_flow_get_name (ret)); + GST_BUFFER_SIZE (buffer)); ret = gst_pad_push (parse->srcpad, buffer); GST_LOG_OBJECT (parse, "frame pushed, flow %s", gst_flow_get_name (ret)); } else { -- 2.34.1