mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
kill autoload stuff as planned
This commit is contained in:
parent
43762ed620
commit
29c7a28817
45 changed files with 166 additions and 944 deletions
|
|
@ -103,7 +103,7 @@ static void update_volume(struct userdata *u) {
|
|||
|
||||
u->muted = FALSE;
|
||||
|
||||
if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK, FALSE))) {
|
||||
if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK))) {
|
||||
pa_log_warn("Sink device '%s' not available for unmuting.", pa_strnull(u->sink_name));
|
||||
return;
|
||||
}
|
||||
|
|
@ -116,7 +116,7 @@ static void update_volume(struct userdata *u) {
|
|||
|
||||
u->muted = TRUE;
|
||||
|
||||
if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK, FALSE))) {
|
||||
if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK))) {
|
||||
pa_log_warn("Sink device '%s' not available for muting.", pa_strnull(u->sink_name));
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue