diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:46:58 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:46:58 +0000 |
commit | 2270d3359ad6df38d270b0e63d825bddc800a68e (patch) | |
tree | 3eb0a5b7f7e610f68e238fa90d543990dad2fe79 | |
parent | f50f516eca65322ecee3dc7fb1c0720dd949004b (diff) |
pulsesink: printf format fix
-rw-r--r-- | ext/pulse/pulsesink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index 45c36652c..e416cae0e 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 */ |