From 863233abf5ceaec3435b83427f2ac06baa554670 Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 9 Oct 2009 12:01:10 +0200 Subject: rtpvrawpay: fix warning on macosx --- gst/rtp/gstrtpvrawpay.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gst/rtp') diff --git a/gst/rtp/gstrtpvrawpay.c b/gst/rtp/gstrtpvrawpay.c index 3a98ce78..29053d78 100644 --- a/gst/rtp/gstrtpvrawpay.c +++ b/gst/rtp/gstrtpvrawpay.c @@ -502,7 +502,8 @@ gst_rtp_vraw_pay_handle_buffer (GstBaseRTPPayload * payload, GstBuffer * buffer) if (!cont) break; } - GST_LOG_OBJECT (rtpvrawpay, "consumed %d bytes", outdata - headers); + GST_LOG_OBJECT (rtpvrawpay, "consumed %d bytes", + (gint) (outdata - headers)); /* second pass, read headers and write the data */ while (TRUE) { -- cgit