From 34e6718da9218df15443f30a531e8891497d9934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 5 Nov 2009 23:33:42 +0000 Subject: [PATCH] theoradec: printf format fix --- ext/theora/theoradec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/theora/theoradec.c b/ext/theora/theoradec.c index 2c9ac10b9d..655452003e 100644 --- a/ext/theora/theoradec.c +++ b/ext/theora/theoradec.c @@ -1346,8 +1346,8 @@ theora_dec_decode_buffer (GstTheoraDec * dec, GstBuffer * buf) dec->last_timestamp = -1; } - GST_DEBUG_OBJECT (dec, "header=%02x packetno=%lld, granule pos=%" - G_GINT64_FORMAT ", outtime=%" GST_TIME_FORMAT, + GST_DEBUG_OBJECT (dec, "header=%02x packetno=%" G_GINT64_FORMAT ", " + "granule pos=%" G_GINT64_FORMAT ", outtime=%" GST_TIME_FORMAT, packet.bytes ? packet.packet[0] : -1, packet.packetno, (gint64) packet.granulepos, GST_TIME_ARGS (dec->last_timestamp));