From 6ff2b59ff5d726462c64acfe4936528562ccee0d Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Thu, 8 May 2014 14:48:00 -0400 Subject: [PATCH] downloadbuffer: Fix 32bit build format '%lli' expects argument of type 'long long int', but argument 8 has type 'gsize' --- plugins/elements/gstdownloadbuffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/elements/gstdownloadbuffer.c b/plugins/elements/gstdownloadbuffer.c index 1af6bb5f7e..a349e148b9 100644 --- a/plugins/elements/gstdownloadbuffer.c +++ b/plugins/elements/gstdownloadbuffer.c @@ -1510,8 +1510,8 @@ gst_download_buffer_handle_src_query (GstPad * pad, GstObject * parent, if (range_start == range_stop) continue; GST_DEBUG_OBJECT (dlbuf, - "range starting at %" G_GINT64_FORMAT " and finishing at %" - G_GINT64_FORMAT, range_start, range_stop); + "range starting at %" G_GSIZE_FORMAT " and finishing at %" + G_GSIZE_FORMAT, range_start, range_stop); gst_query_add_buffering_range (query, range_start, range_stop); } }