diff options
Diffstat (limited to 'Userland/Applications/DisplaySettings/main.cpp')
-rw-r--r-- | Userland/Applications/DisplaySettings/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/DisplaySettings/main.cpp b/Userland/Applications/DisplaySettings/main.cpp index 66e0df7554..944131d13f 100644 --- a/Userland/Applications/DisplaySettings/main.cpp +++ b/Userland/Applications/DisplaySettings/main.cpp @@ -19,14 +19,14 @@ int main(int argc, char** argv) { - if (pledge("stdio thread recvfd sendfd rpath accept cpath wpath unix fattr", nullptr) < 0) { + if (pledge("stdio thread recvfd sendfd rpath cpath wpath unix", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio thread recvfd sendfd rpath accept cpath wpath", nullptr) < 0) { + if (pledge("stdio thread recvfd sendfd rpath cpath wpath", nullptr) < 0) { perror("pledge"); return 1; } |