modules: silence some useless warnings

Fixes #1423
This commit is contained in:
Wim Taymans 2021-07-19 18:30:22 +02:00
parent bd98c6771e
commit 6e44c081b0
9 changed files with 14 additions and 14 deletions

View file

@ -127,10 +127,10 @@ static void capture_process(void *d)
uint32_t i;
if ((in = pw_stream_dequeue_buffer(impl->capture)) == NULL)
pw_log_warn("out of capture buffers: %m");
pw_log_debug("out of capture buffers: %m");
if ((out = pw_stream_dequeue_buffer(impl->playback)) == NULL)
pw_log_warn("out of playback buffers: %m");
pw_log_debug("out of playback buffers: %m");
if (in != NULL && out != NULL) {
uint32_t size = 0;