mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
downloadbuffer: Fix 32bit build
format '%lli' expects argument of type 'long long int', but argument 8 has type 'gsize'
This commit is contained in:
parent
157befa04c
commit
6ff2b59ff5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue