summaryrefslogtreecommitdiff
path: root/Userland/Games/Conway/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/Conway/main.cpp')
-rw-r--r--Userland/Games/Conway/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Games/Conway/main.cpp b/Userland/Games/Conway/main.cpp
index 77d84c8382..dc4325dfc7 100644
--- a/Userland/Games/Conway/main.cpp
+++ b/Userland/Games/Conway/main.cpp
@@ -15,14 +15,14 @@
int main(int argc, char** argv)
{
- if (pledge("stdio rpath wpath cpath recvfd sendfd accept cpath unix fattr", nullptr) < 0) {
+ if (pledge("stdio rpath wpath cpath recvfd sendfd cpath unix", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
- if (pledge("stdio rpath recvfd sendfd accept", nullptr) < 0) {
+ if (pledge("stdio rpath recvfd sendfd", nullptr) < 0) {
perror("pledge");
return 1;
}