diff options
author | networkException <git@nwex.de> | 2021-08-21 16:14:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-22 01:32:25 +0200 |
commit | 938051feb8d9340657251082f3fd4abffd57b813 (patch) | |
tree | 7d71e8c592b4915dcb4930fde8ba6739f60450f1 /Userland/Applets | |
parent | 54bbe52b5143954dcdb700207de43343e5102ab8 (diff) | |
download | serenity-938051feb8d9340657251082f3fd4abffd57b813.zip |
Everywhere: Use Core::ConfigFile::AllowWriting::Yes to allow writing
Diffstat (limited to 'Userland/Applets')
-rw-r--r-- | Userland/Applets/Audio/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/Audio/main.cpp b/Userland/Applets/Audio/main.cpp index a39611ea85..1d00dee0ad 100644 --- a/Userland/Applets/Audio/main.cpp +++ b/Userland/Applets/Audio/main.cpp @@ -211,7 +211,7 @@ int main(int argc, char** argv) return 1; } - auto config = Core::ConfigFile::get_for_app("AudioApplet"); + auto config = Core::ConfigFile::get_for_app("AudioApplet", Core::ConfigFile::AllowWriting::Yes); // To not upset the audio server state, we responsibly read this once. auto audio_master_config = Core::ConfigFile::get_for_app("Audio"); |