From 9cb748ee21bcdb81e2f8f42eb8ef2d25e3e58d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 23 Nov 2011 23:29:03 +0000 Subject: [PATCH] ext: fix more printf format warnings in debug messages --- ext/twolame/gsttwolamemp2enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/twolame/gsttwolamemp2enc.c b/ext/twolame/gsttwolamemp2enc.c index 9c8b874d10..7e4882e46b 100644 --- a/ext/twolame/gsttwolamemp2enc.c +++ b/ext/twolame/gsttwolamemp2enc.c @@ -687,8 +687,8 @@ gst_two_lame_handle_frame (GstAudioEncoder * enc, GstBuffer * buf) num_samples / twolame->num_channels, mp3_data, mp3_buffer_size); } - GST_LOG_OBJECT (twolame, "encoded %d bytes of audio to %d bytes of mp3", - size, mp3_size); + GST_LOG_OBJECT (twolame, "encoded %" G_GSIZE_FORMAT " bytes of audio " + "to %d bytes of mp3", size, mp3_size); gst_buffer_unmap (buf, data, -1); gst_buffer_unmap (mp3_buf, mp3_data, -1);