diff options
Diffstat (limited to 'Userland/Games/Spider/main.cpp')
-rw-r--r-- | Userland/Games/Spider/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Spider/main.cpp b/Userland/Games/Spider/main.cpp index 06df8e4b71..b54ed37822 100644 --- a/Userland/Games/Spider/main.cpp +++ b/Userland/Games/Spider/main.cpp @@ -44,7 +44,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) auto app = TRY(GUI::Application::try_create(arguments)); auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-spider")); - Config::pledge_domains("Spider"); + Config::pledge_domain("Spider"); TRY(Core::System::pledge("stdio recvfd sendfd rpath")); |