mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
gstbasesrc: unsigned long is "%lu", not "%ul". Fixes build on macosx
This commit is contained in:
parent
36205e7d42
commit
c1a75a0b45
1 changed files with 1 additions and 1 deletions
|
@ -2180,7 +2180,7 @@ gst_base_src_loop (GstPad * pad)
|
|||
} else
|
||||
position = -1;
|
||||
|
||||
GST_LOG_OBJECT (src, "next_ts %" GST_TIME_FORMAT " size %ul",
|
||||
GST_LOG_OBJECT (src, "next_ts %" GST_TIME_FORMAT " size %lu",
|
||||
GST_TIME_ARGS (position), blocksize);
|
||||
|
||||
ret = gst_base_src_get_range (src, position, blocksize, &buf);
|
||||
|
|
Loading…
Reference in a new issue