From: Josep Torra Date: Fri, 9 Oct 2009 10:01:10 +0000 (+0200) Subject: rtpvrawpay: fix warning on macosx X-Git-Tag: 1.19.3~509^2~9575 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=863233abf5ceaec3435b83427f2ac06baa554670;p=platform%2Fupstream%2Fgstreamer.git rtpvrawpay: fix warning on macosx --- diff --git a/gst/rtp/gstrtpvrawpay.c b/gst/rtp/gstrtpvrawpay.c index 3a98ce7..29053d7 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) {