ivfparse: Fix format string warning
authorРуслан Ижбулатов <lrn1986@gmail.com>
Wed, 2 Jun 2010 01:51:41 +0000 (05:51 +0400)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 2 Jun 2010 08:06:26 +0000 (10:06 +0200)
Fixes #620324

gst/ivfparse/gstivfparse.c

index 5996af9..a621801 100644 (file)
@@ -233,7 +233,7 @@ gst_ivfparse_chain (GstPad * pad, GstBuffer * buf)
         guint32 frame_size = GST_READ_UINT32_LE (data);
         guint64 frame_pts = GST_READ_UINT64_LE (data + 4);
 
-        GST_LOG_OBJECT (ivf, "Read frame header: size %u, pts %u",
+        GST_LOG_OBJECT (ivf, "Read frame header: size %u, pts %" G_GUINT64_FORMAT,
             frame_size, frame_pts);
 
         if (gst_adapter_available (ivf->adapter) >= 12 + frame_size) {