From c66c3d354cb711ca3422cc185ba80574756ab039 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 29 Jun 2010 20:14:53 +0100 Subject: [PATCH] wavparse: fix unportable printf format specifiers in commented out code To avoid false positives when grepping for unportable specifiers. --- gst/wavparse/gstwavparse.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index 18673ab..0c18560 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -662,15 +662,16 @@ gst_wavparse_other (GstWavParse * wav) length = G_MAXUINT32; } if (file_length > G_MAXUINT32) { - GST_DEBUG_OBJECT (wav, "file length %lld, clipping to 32 bits"); + GST_DEBUG_OBJECT (wav, "file length %" G_GUINT64_FORMAT + ", clipping to 32 bits", file_length); /* could not get length, assuming till eof */ length = G_MAXUINT32; } else { - GST_DEBUG_OBJECT (wav, "file length %lld, datalength", - file_length, length); + GST_DEBUG_OBJECT (wav, "file length %" G_GUINT64_FORMAT + ", datalength %u", file_length, length); /* substract offset of datastart from length */ length = file_length - wav->datastart; - GST_DEBUG_OBJECT (wav, "datalength %lld", length); + GST_DEBUG_OBJECT (wav, "datalength %u", length); } } wav->datasize = (guint64) length; -- 2.7.4