mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
pulse: fix printf format in some debugging messages
This commit is contained in:
parent
7cd836d934
commit
74b2af63fd
1 changed files with 6 additions and 3 deletions
|
@ -1304,14 +1304,17 @@ gst_pulseringbuffer_commit (GstRingBuffer * buf, guint64 * sample,
|
||||||
pbuf->m_writable);
|
pbuf->m_writable);
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_LOG_OBJECT (psink, "requesting %u bytes of shared memory",
|
GST_LOG_OBJECT (psink, "requesting %" G_GSIZE_FORMAT " bytes of "
|
||||||
pbuf->m_writable);
|
"shared memory", pbuf->m_writable);
|
||||||
|
|
||||||
if (pa_stream_begin_write (pbuf->stream, &pbuf->m_data,
|
if (pa_stream_begin_write (pbuf->stream, &pbuf->m_data,
|
||||||
&pbuf->m_writable) < 0) {
|
&pbuf->m_writable) < 0) {
|
||||||
GST_LOG_OBJECT (psink, "pa_stream_begin_write() failed");
|
GST_LOG_OBJECT (psink, "pa_stream_begin_write() failed");
|
||||||
goto writable_size_failed;
|
goto writable_size_failed;
|
||||||
}
|
}
|
||||||
GST_LOG_OBJECT (psink, "got %u bytes of shared memory", pbuf->m_writable);
|
|
||||||
|
GST_LOG_OBJECT (psink, "got %" G_GSIZE_FORMAT " bytes of shared memory",
|
||||||
|
pbuf->m_writable);
|
||||||
|
|
||||||
/* Just to make sure that we didn't get more than requested */
|
/* Just to make sure that we didn't get more than requested */
|
||||||
if (pbuf->m_writable > buf->spec.segsize) {
|
if (pbuf->m_writable > buf->spec.segsize) {
|
||||||
|
|
Loading…
Reference in a new issue