summaryrefslogtreecommitdiffstats
path: root/gst/rtp
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-03-10 10:16:27 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-03-10 10:16:27 +0100
commit72a9b89b5032c743fb9e0a963eac4a0b43568af8 (patch)
tree1c8f3b81636815e88e3c9f42e8c4100e1d43f933 /gst/rtp
parentd3e8f61644265e59cf52594c80eceb422e1beaa8 (diff)
gstrtpvorbisdepay: Fix build on macosx
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtpvorbisdepay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpvorbisdepay.c b/gst/rtp/gstrtpvorbisdepay.c
index d1f25765..7e13859d 100644
--- a/gst/rtp/gstrtpvorbisdepay.c
+++ b/gst/rtp/gstrtpvorbisdepay.c
@@ -176,7 +176,7 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
GST_BUFFER_MALLOCDATA (confbuf) = data;
GST_BUFFER_SIZE (confbuf) = size;
- GST_DEBUG_OBJECT (rtpvorbisdepay, "config size %u", size);
+ GST_DEBUG_OBJECT (rtpvorbisdepay, "config size %" G_GSIZE_FORMAT, size);
/* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | Number of packed headers |
@@ -243,7 +243,8 @@ gst_rtp_vorbis_depay_parse_configuration (GstRtpVorbisDepay * rtpvorbisdepay,
offset += 6;
GST_DEBUG_OBJECT (rtpvorbisdepay,
- "header %d, ident 0x%08x, length %u, left %u", i, ident, length, size);
+ "header %d, ident 0x%08x, length %u, left %" G_GSIZE_FORMAT, i, ident,
+ length, size);
if (size < length)
goto too_small;