summaryrefslogtreecommitdiffstats
path: root/ext/flac/gstflacenc.c
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2009-10-09 12:25:19 +0200
committerJosep Torra <n770galaxy@gmail.com>2009-10-09 12:25:19 +0200
commit133ebe76a37ac67c194885c26a0344322f391091 (patch)
treee3e7bbba54633acb54780f999cbdb048e5429fb9 /ext/flac/gstflacenc.c
parent6320de853bad1dbb4872ebfba890f07c54295995 (diff)
flac: fix warnings on macosx
Diffstat (limited to 'ext/flac/gstflacenc.c')
-rw-r--r--ext/flac/gstflacenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index 6d86c9bf..47832af2 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -757,16 +757,16 @@ gst_flac_enc_seek_callback (const FLAC__StreamEncoder * encoder,
gst_object_unref (peerpad);
if (ret) {
- GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s", absolute_byte_offset,
- "succeeded");
+ GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s",
+ (guint64) absolute_byte_offset, "succeeded");
} else {
- GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s", absolute_byte_offset,
- "failed");
+ GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " %s",
+ (guint64) absolute_byte_offset, "failed");
return FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED;
}
} else {
GST_DEBUG ("Seek to %" G_GUINT64_FORMAT " failed (no peer pad)",
- absolute_byte_offset);
+ (guint64) absolute_byte_offset);
}
flacenc->offset = absolute_byte_offset;