mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
pulsesink: printf format fix
This commit is contained in:
parent
f50f516eca
commit
2270d3359a
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue