diff options
Diffstat (limited to 'Userland/Games/Breakout/main.cpp')
-rw-r--r-- | Userland/Games/Breakout/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Breakout/main.cpp b/Userland/Games/Breakout/main.cpp index 38e3cbf9fc..cd1f6cd6f8 100644 --- a/Userland/Games/Breakout/main.cpp +++ b/Userland/Games/Breakout/main.cpp @@ -15,7 +15,7 @@ int main(int argc, char** argv) { - if (pledge("stdio recvfd sendfd rpath wpath cpath accept unix fattr", nullptr) < 0) { + if (pledge("stdio recvfd sendfd rpath unix", nullptr) < 0) { perror("pledge"); return 1; } |