summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor/main.cpp
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/FontEditor/main.cpp
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/FontEditor/main.cpp')
-rw-r--r--Userland/Applications/FontEditor/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/FontEditor/main.cpp b/Userland/Applications/FontEditor/main.cpp
index 6addaf0b43..d862fdba20 100644
--- a/Userland/Applications/FontEditor/main.cpp
+++ b/Userland/Applications/FontEditor/main.cpp
@@ -28,7 +28,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Desktop::Launcher::add_allowed_handler_with_only_specific_urls("/bin/Help", { URL::create_with_file_protocol("/usr/share/man/man1/FontEditor.md") }));
TRY(Desktop::Launcher::seal_allowlist());
- Config::pledge_domains("FontEditor");
+ Config::pledge_domain("FontEditor");
Config::monitor_domain("FontEditor");
TRY(Core::System::pledge("stdio recvfd sendfd thread rpath cpath wpath"));