rawparse: fix compile warning

This commit is contained in:
Alessandro Decina 2012-04-05 08:24:31 +02:00
parent 1318a97e0a
commit cd21a65031

View file

@ -390,8 +390,8 @@ gst_raw_parse_loop (GstElement * element)
if (gst_buffer_get_size (buffer) < size) {
GST_DEBUG_OBJECT (rp, "Short read at offset %" G_GINT64_FORMAT
", got only %u of %u bytes", rp->offset, gst_buffer_get_size (buffer),
size);
", got only %" G_GSIZE_FORMAT " of %u bytes", rp->offset,
gst_buffer_get_size (buffer), size);
if (size > rp->framesize) {
gst_buffer_set_size (buffer, gst_buffer_get_size (buffer) -