diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-09-12 22:57:29 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-09-12 22:57:29 +0000 |
commit | ef83a195251271f59feda68dba20b53d1634402f (patch) | |
tree | 75e5c1a9fbdb93aa058afaab8792e88e53da9c33 /src/pulsecore/sink.c | |
parent | cf3e9da9dd8c2d69ffdbfcaafa354e9e85a9f871 (diff) |
extend rtpoll API to allow registration of arbitray functions to be executed in the event loop. Add priority system for specifying the order of these functions.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1816 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/sink.c')
-rw-r--r-- | src/pulsecore/sink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index aac4a2f6..b009bc77 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -126,7 +126,7 @@ pa_sink* pa_sink_new( n = pa_sprintf_malloc("%s.monitor", name); if (!(s->monitor_source = pa_source_new(core, driver, n, 0, spec, map))) - pa_log_warn("failed to create monitor source."); + pa_log_warn("Failed to create monitor source."); else { char *d; s->monitor_source->monitor_of = s; |