From 775cf6ab3ea4b7656c6f7737a38242fa5f5e37cb Mon Sep 17 00:00:00 2001 From: Thijs Vermeir Date: Tue, 18 Dec 2012 16:20:08 +0100 Subject: [PATCH] inter: use appropriate printf format for gsize --- gst/inter/gstinteraudiosink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/inter/gstinteraudiosink.c b/gst/inter/gstinteraudiosink.c index 9cd82d6..f83db31 100644 --- a/gst/inter/gstinteraudiosink.c +++ b/gst/inter/gstinteraudiosink.c @@ -28,7 +28,7 @@ * |[ * gst-launch -v audiotestsrc ! queue ! interaudiosink * ]| - * + * * The interaudiosink element cannot be used effectively with gst-launch, * as it requires a second pipeline in the application to receive the * audio. @@ -229,7 +229,7 @@ gst_inter_audio_sink_render (GstBaseSink * sink, GstBuffer * buffer) GstInterAudioSink *interaudiosink = GST_INTER_AUDIO_SINK (sink); int n; - GST_DEBUG ("render %d", gst_buffer_get_size (buffer)); + GST_DEBUG ("render %" G_GSIZE_FORMAT, gst_buffer_get_size (buffer)); g_mutex_lock (interaudiosink->surface->mutex); n = gst_adapter_available (interaudiosink->surface->audio_adapter) / 4; -- 2.7.4