diff options
Diffstat (limited to 'Userland/Games/Chess/main.cpp')
-rw-r--r-- | Userland/Games/Chess/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp index a3c2709643..8e9d64e9b3 100644 --- a/Userland/Games/Chess/main.cpp +++ b/Userland/Games/Chess/main.cpp @@ -21,13 +21,13 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("stdio rpath wpath cpath recvfd sendfd thread proc exec unix", nullptr)); + TRY(Core::System::pledge("stdio rpath wpath cpath recvfd sendfd thread proc exec unix")); auto app = TRY(GUI::Application::try_create(arguments)); Config::pledge_domains("Chess"); - TRY(Core::System::pledge("stdio rpath wpath cpath recvfd sendfd thread proc exec", nullptr)); + TRY(Core::System::pledge("stdio rpath wpath cpath recvfd sendfd thread proc exec")); auto app_icon = GUI::Icon::default_icon("app-chess"); |