diff options
Diffstat (limited to 'Userland/Applets/ResourceGraph/main.cpp')
-rw-r--r-- | Userland/Applets/ResourceGraph/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applets/ResourceGraph/main.cpp b/Userland/Applets/ResourceGraph/main.cpp index 966039a445..c4120283b7 100644 --- a/Userland/Applets/ResourceGraph/main.cpp +++ b/Userland/Applets/ResourceGraph/main.cpp @@ -185,11 +185,11 @@ private: ErrorOr<int> serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath unix", nullptr)); + TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath unix")); auto app = GUI::Application::construct(arguments); - TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath", nullptr)); + TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath")); const char* cpu = nullptr; const char* memory = nullptr; |