summaryrefslogtreecommitdiff
path: root/Userland/Games/2048
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/2048')
-rw-r--r--Userland/Games/2048/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Games/2048/main.cpp b/Userland/Games/2048/main.cpp
index e3fa8d02cd..4565fc5c44 100644
--- a/Userland/Games/2048/main.cpp
+++ b/Userland/Games/2048/main.cpp
@@ -25,7 +25,7 @@
int main(int argc, char** argv)
{
- if (pledge("stdio rpath wpath cpath recvfd sendfd unix", nullptr) < 0) {
+ if (pledge("stdio rpath recvfd sendfd unix", nullptr) < 0) {
perror("pledge");
return 1;
}
@@ -39,7 +39,7 @@ int main(int argc, char** argv)
Config::pledge_domains("2048");
- if (pledge("stdio rpath recvfd sendfd wpath cpath", nullptr) < 0) {
+ if (pledge("stdio rpath recvfd sendfd", nullptr) < 0) {
perror("pledge");
return 1;
}