summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpvrawpay.c
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-10-09 14:21:09 +0300
committerStefan Kost <ensonic@users.sf.net>2009-10-09 14:21:09 +0300
commitf854836f5c7aac4354c996160942c3c2dd5601e0 (patch)
tree5c78c4ea785c32a07fe9e64c240b44db03605a4f /gst/rtp/gstrtpvrawpay.c
parentf41d7e7bd597dafadc3c61146b34a92f9d4f646f (diff)
buikd: explicitely cast, to tell some compilers that this is not long int
Diffstat (limited to 'gst/rtp/gstrtpvrawpay.c')
-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 01537fe4..bc968fbe 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 %u bytes", outdata - headers);
+ GST_LOG_OBJECT (rtpvrawpay, "consumed %u bytes",
+ (guint) (outdata - headers));
/* second pass, read headers and write the data */
while (TRUE) {