summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpmp2tdepay.c
diff options
context:
space:
mode:
authorMatej Knopp <matej.knopp@gmail.com>2011-11-21 20:31:31 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-22 01:28:22 +0000
commit1e5dd9e3150153d35eb5843c127d11d56b410a32 (patch)
tree1535824fbb08757035818578db64d68825b000c1 /gst/rtp/gstrtpmp2tdepay.c
parentf8e988a94cdfe15ee65b2c81fea049c1d39716cb (diff)
Fix printf format compiler warnings on OS X / 64bit
https://bugzilla.gnome.org/show_bug.cgi?id=662615
Diffstat (limited to 'gst/rtp/gstrtpmp2tdepay.c')
-rw-r--r--gst/rtp/gstrtpmp2tdepay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpmp2tdepay.c b/gst/rtp/gstrtpmp2tdepay.c
index a1e16e69d..d8a91268f 100644
--- a/gst/rtp/gstrtpmp2tdepay.c
+++ b/gst/rtp/gstrtpmp2tdepay.c
@@ -167,8 +167,8 @@ gst_rtp_mp2t_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
gst_rtp_buffer_unmap (&rtp);
if (outbuf)
- GST_DEBUG ("gst_rtp_mp2t_depay_chain: pushing buffer of size %d",
- gst_buffer_get_size (outbuf));
+ GST_DEBUG ("gst_rtp_mp2t_depay_chain: pushing buffer of size %"
+ G_GSIZE_FORMAT, gst_buffer_get_size (outbuf));
return outbuf;