summaryrefslogtreecommitdiff
path: root/Userland/Applications/Welcome
diff options
context:
space:
mode:
authorVitaly Dyachkov <obyknovenius@me.com>2022-02-11 17:33:09 +0100
committerAndreas Kling <kling@serenityos.org>2022-02-11 18:06:39 +0100
commit32b8795091681de7296074fb9a7b4f63a17e475a (patch)
tree90c7af82261061473d234ca4e6dbfc6dafa85d28 /Userland/Applications/Welcome
parent873f4d5de62aab78e8b05efbb3e566de0efa7de4 (diff)
downloadserenity-32b8795091681de7296074fb9a7b4f63a17e475a.zip
LibConfig: Rename pledge_domains(String) => pledge_domain(String)
pledge_domains() that takes only one String argument was specifically added as a shortcut for pledging a single domain. So, it makes sense to use singular here.
Diffstat (limited to 'Userland/Applications/Welcome')
-rw-r--r--Userland/Applications/Welcome/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Welcome/main.cpp b/Userland/Applications/Welcome/main.cpp
index c71dba558f..988e439638 100644
--- a/Userland/Applications/Welcome/main.cpp
+++ b/Userland/Applications/Welcome/main.cpp
@@ -18,7 +18,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::pledge("stdio recvfd sendfd rpath unix proc exec"));
auto app = TRY(GUI::Application::try_create(arguments));
- Config::pledge_domains("SystemServer");
+ Config::pledge_domain("SystemServer");
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/home", "r"));