gstbuffer: fix compile warning
authorAlessandro Decina <alessandro.d@gmail.com>
Thu, 5 Apr 2012 07:07:18 +0000 (09:07 +0200)
committerAlessandro Decina <alessandro.d@gmail.com>
Thu, 5 Apr 2012 07:07:18 +0000 (09:07 +0200)
gst/gstbuffer.c

index 7c73ed4..ed586a2 100644 (file)
@@ -255,7 +255,8 @@ _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
   gsize end, i;
 
   end = idx + length;
-  GST_LOG ("buffer %p replace %u-%u with memory %p", buffer, idx, end, mem);
+  GST_LOG ("buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer,
+      idx, end, mem);
 
   /* unref old memory */
   for (i = idx; i < end; i++)