gstbasesrc: unsigned long is "%lu", not "%ul". Fixes build on macosx

This commit is contained in:
Edward Hervey 2009-03-11 11:23:05 +01:00
parent 36205e7d42
commit c1a75a0b45

View file

@ -2180,7 +2180,7 @@ gst_base_src_loop (GstPad * pad)
} else } else
position = -1; 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); GST_TIME_ARGS (position), blocksize);
ret = gst_base_src_get_range (src, position, blocksize, &buf); ret = gst_base_src_get_range (src, position, blocksize, &buf);