From e8b24f9189518408e266cd78f7bb9385a6d78b6f Mon Sep 17 00:00:00 2001 From: Arnaud Vrac Date: Mon, 10 Oct 2016 17:00:39 +0200 Subject: [PATCH] adaptivedemux: fix buffer size print format https://bugzilla.gnome.org/show_bug.cgi?id=772706 --- gst-libs/gst/adaptivedemux/gstadaptivedemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c index a47b19676b..875c804b8b 100644 --- a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c +++ b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c @@ -2370,7 +2370,7 @@ _uri_handler_probe (GstPad * pad, GstPadProbeInfo * info, } stream->fragment_bytes_downloaded += gst_buffer_get_size (buf); GST_LOG_OBJECT (pad, - "Received buffer, size %" G_GUINT64_FORMAT " total %" G_GUINT64_FORMAT, + "Received buffer, size %" G_GSIZE_FORMAT " total %" G_GUINT64_FORMAT, gst_buffer_get_size (buf), stream->fragment_bytes_downloaded); } else if (GST_PAD_PROBE_INFO_TYPE (info) & GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM) {