diff options
Diffstat (limited to 'Userland/Services/ConfigServer/main.cpp')
-rw-r--r-- | Userland/Services/ConfigServer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/ConfigServer/main.cpp b/Userland/Services/ConfigServer/main.cpp index cde5a16075..ac97f033f1 100644 --- a/Userland/Services/ConfigServer/main.cpp +++ b/Userland/Services/ConfigServer/main.cpp @@ -12,7 +12,7 @@ ErrorOr<int> serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio accept rpath wpath cpath", nullptr)); + TRY(Core::System::pledge("stdio accept rpath wpath cpath")); TRY(Core::System::unveil(Core::StandardPaths::config_directory(), "rwc")); TRY(Core::System::unveil(nullptr, nullptr)); |