summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-10-09 14:37:32 +0300
committerStefan Kost <ensonic@users.sf.net>2009-10-09 14:37:32 +0300
commitf1fe1f52fd33cdeb3455061a4566053c18fe4b50 (patch)
tree4b2870e696260b2cb4630c5bf9cec1b2a34a3c5e /ext
parentf854836f5c7aac4354c996160942c3c2dd5601e0 (diff)
flac: apparently on some platforms a FLAC__uint64!=guint64
Diffstat (limited to 'ext')
-rw-r--r--ext/flac/gstflacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c
index 5e9e8b7a..f28df87d 100644
--- a/ext/flac/gstflacdec.c
+++ b/ext/flac/gstflacdec.c
@@ -669,7 +669,7 @@ gst_flac_dec_seek (const FLAC__StreamDecoder * decoder,
flacdec = GST_FLAC_DEC (client_data);
- GST_DEBUG_OBJECT (flacdec, "seek %" G_GUINT64_FORMAT, position);
+ GST_DEBUG_OBJECT (flacdec, "seek %" G_GUINT64_FORMAT, (guint64) position);
flacdec->offset = position;
return FLAC__STREAM_DECODER_SEEK_STATUS_OK;