summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pulsecore/flist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pulsecore/flist.c b/src/pulsecore/flist.c
index 8e8c3cda..71feaa93 100644
--- a/src/pulsecore/flist.c
+++ b/src/pulsecore/flist.c
@@ -116,7 +116,8 @@ int pa_flist_push(pa_flist *l, void *p) {
elem = stack_pop(&l->empty);
if (elem == NULL) {
- pa_log_warn("flist is full");
+ if (pa_log_ratelimit())
+ pa_log_debug("flist is full (don't worry)");
return -1;
}
pa_atomic_ptr_store(&elem->ptr, p);