diff options
author | Colin Guthrie <cguthrie@mandriva.org> | 2010-02-09 21:37:32 +0000 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2010-02-09 22:01:08 +0000 |
commit | a631beeafb4729f8bed1c538846d0bb142cee7bf (patch) | |
tree | c85b785b9948a46dcae1c5a47400122057b4ad50 /src | |
parent | 84782f24c5f43456430c796bd12f9face24f0573 (diff) |
core: Fix macro typo - PA_SINK_IS_LINKED -> PA_SINK_INPUT_IS_LINKED
Diffstat (limited to 'src')
-rw-r--r-- | src/pulsecore/sink-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c index 7acb25ff..3c957f12 100644 --- a/src/pulsecore/sink-input.c +++ b/src/pulsecore/sink-input.c @@ -1086,7 +1086,7 @@ void pa_sink_input_update_proplist(pa_sink_input *i, pa_update_mode_t mode, pa_p if (p) pa_proplist_update(i->proplist, mode, p); - if (PA_SINK_IS_LINKED(i->state)) { + if (PA_SINK_INPUT_IS_LINKED(i->state)) { pa_hook_fire(&i->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED], i); pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index); } |