summaryrefslogtreecommitdiff
path: root/Userland/Services/AudioServer/Mixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/AudioServer/Mixer.cpp')
-rw-r--r--Userland/Services/AudioServer/Mixer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Services/AudioServer/Mixer.cpp b/Userland/Services/AudioServer/Mixer.cpp
index 5cfbd64890..a865e5012d 100644
--- a/Userland/Services/AudioServer/Mixer.cpp
+++ b/Userland/Services/AudioServer/Mixer.cpp
@@ -177,7 +177,8 @@ void Mixer::request_setting_sync()
if (auto result = m_config->sync(); result.is_error())
dbgln("Failed to write audio mixer config: {}", result.error());
},
- this);
+ this)
+ .release_value_but_fixme_should_propagate_errors();
m_config_write_timer->start();
}
}