diff options
Diffstat (limited to 'Userland/Utilities/asctl.cpp')
-rw-r--r-- | Userland/Utilities/asctl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/asctl.cpp b/Userland/Utilities/asctl.cpp index b3df2fd49d..9bbf07edcc 100644 --- a/Userland/Utilities/asctl.cpp +++ b/Userland/Utilities/asctl.cpp @@ -43,7 +43,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) args_parser.parse(arguments); TRY(Core::System::unveil(nullptr, nullptr)); - TRY(Core::System::pledge("stdio rpath wpath recvfd", nullptr)); + TRY(Core::System::pledge("stdio rpath wpath recvfd")); if (command.equals_ignoring_case("get") || command == "g") { // Get variables |