From a7fe2c391c0b1972675929bb0235388a9e79a19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Wed, 2 Jun 2010 05:51:41 +0400 Subject: [PATCH] ivfparse: Fix format string warning Fixes #620324 --- gst/ivfparse/gstivfparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/ivfparse/gstivfparse.c b/gst/ivfparse/gstivfparse.c index 5996af9672..a621801408 100644 --- a/gst/ivfparse/gstivfparse.c +++ b/gst/ivfparse/gstivfparse.c @@ -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) {