From 2270d3359ad6df38d270b0e63d825bddc800a68e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 5 Nov 2009 23:46:58 +0000 Subject: [PATCH] pulsesink: printf format fix --- ext/pulse/pulsesink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index 45c3665..e416cae 100644 --- a/ext/pulse/pulsesink.c +++ b/ext/pulse/pulsesink.c @@ -1228,8 +1228,8 @@ gst_pulseringbuffer_commit (GstRingBuffer * buf, guint64 * sample, towrite = avail * bps; - GST_LOG_OBJECT (psink, "writing %d samples at offset %" G_GUINT64_FORMAT, - avail, offset); + GST_LOG_OBJECT (psink, "writing %u samples at offset %" G_GUINT64_FORMAT, + (guint) avail, offset); if (G_LIKELY (inr == outr && !reverse)) { /* no rate conversion, simply write out the samples */ -- 2.7.4