summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-03-30 20:19:32 +0200
committerLennart Poettering <lennart@poettering.net>2009-03-30 20:19:32 +0200
commit649c982222f520fdd4afae8880c622437d4ba585 (patch)
tree7b7ba98321c610de6512f26d1cfa91e01bd31cd4 /src/pulsecore
parent1743322d3e184d57a80cd58e9bcfb0bf01bd4c67 (diff)
Use pa_source_set_max_rewind_within_thread() for updating the monitor source's max_rewind
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/sink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c
index 1fe8f592..73ad247d 100644
--- a/src/pulsecore/sink.c
+++ b/src/pulsecore/sink.c
@@ -1798,7 +1798,7 @@ void pa_sink_set_max_rewind_within_thread(pa_sink *s, size_t max_rewind) {
}
if (s->monitor_source)
- pa_source_set_max_rewind(s->monitor_source, s->thread_info.max_rewind);
+ pa_source_set_max_rewind_within_thread(s->monitor_source, s->thread_info.max_rewind);
}
/* Called from main thread */