wavparse: fix unportable printf format specifiers in commented out code
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 29 Jun 2010 19:14:53 +0000 (20:14 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 29 Jun 2010 19:14:53 +0000 (20:14 +0100)
To avoid false positives when grepping for unportable specifiers.

gst/wavparse/gstwavparse.c

index 18673ab..0c18560 100644 (file)
@@ -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;