summaryrefslogtreecommitdiffstats
path: root/gst/flv/gstflvdemux.c
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2007-09-12 08:38:22 +0000
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-12 21:20:51 +0200
commitab63c48e829b665e7a868427ec452ae61b733768 (patch)
tree91276784ac71ca08485636c42e34e1f5894095bd /gst/flv/gstflvdemux.c
parent5a5bbae173189b5ec2da3d6a087ef1caa03c96a3 (diff)
[MOVED FROM BAD 10/57] gst/: Printf format fixes (#476128).
Original commit message from CVS: Patch by: Peter Kjellerstedt <pkj at axis com> * gst-libs/gst/app/gstappsink.c: * gst/flv/gstflvdemux.c: * gst/flv/gstflvparse.c: * gst/interleave/deinterleave.c: * gst/switch/gstswitch.c: Printf format fixes (#476128).
Diffstat (limited to 'gst/flv/gstflvdemux.c')
-rw-r--r--gst/flv/gstflvdemux.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c
index 16250d1b..0d8d087c 100644
--- a/gst/flv/gstflvdemux.c
+++ b/gst/flv/gstflvdemux.c
@@ -321,12 +321,14 @@ gst_flv_demux_pull_tag (GstPad * pad, GstFLVDemux * demux)
/* Pull the whole tag */
ret = gst_pad_pull_range (pad, demux->offset, demux->tag_size, &buffer);
if (G_UNLIKELY (ret != GST_FLOW_OK)) {
- GST_WARNING_OBJECT (demux, "failed when pulling %d bytes", demux->tag_size);
+ GST_WARNING_OBJECT (demux,
+ "failed when pulling %" G_GUINT64_FORMAT " bytes", demux->tag_size);
goto beach;
}
if (G_UNLIKELY (buffer && GST_BUFFER_SIZE (buffer) != demux->tag_size)) {
- GST_WARNING_OBJECT (demux, "partial pull got %d when expecting %d",
+ GST_WARNING_OBJECT (demux,
+ "partial pull got %d when expecting %" G_GUINT64_FORMAT,
GST_BUFFER_SIZE (buffer), demux->tag_size);
gst_buffer_unref (buffer);
ret = GST_FLOW_UNEXPECTED;