summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2009-10-09 12:01:10 +0200
committerJosep Torra <n770galaxy@gmail.com>2009-10-09 12:01:10 +0200
commit863233abf5ceaec3435b83427f2ac06baa554670 (patch)
tree9bf87e7a8ba297e09fed35872062093ec3a943b5
parenta1fbe6431740307ce5de956e42ccc302adb7e325 (diff)
rtpvrawpay: fix warning on macosx
-rw-r--r--gst/rtp/gstrtpvrawpay.c3
1 files changed, 2 insertions, 1 deletions
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) {