summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-10-09 13:38:17 +0300
committerStefan Kost <ensonic@users.sf.net>2009-10-09 13:54:24 +0300
commitf41d7e7bd597dafadc3c61146b34a92f9d4f646f (patch)
treecb88fdddd4703af671b52a10388d6c51622d4bb7 /ext
parent696e350c7b088b337bd7034fedcd4fb3c01f27ef (diff)
build: don't cast, but use the right format specified instead
This correct some of the previous macos fixes.
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 87077f56..5e9e8b7a 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_GINT64_FORMAT, (gint64) position);
+ GST_DEBUG_OBJECT (flacdec, "seek %" G_GUINT64_FORMAT, position);
flacdec->offset = position;
return FLAC__STREAM_DECODER_SEEK_STATUS_OK;