diff options
Diffstat (limited to 'Userland/Shell/main.cpp')
-rw-r--r-- | Userland/Shell/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/main.cpp b/Userland/Shell/main.cpp index f9462f05f7..8c07b7ecc4 100644 --- a/Userland/Shell/main.cpp +++ b/Userland/Shell/main.cpp @@ -42,7 +42,7 @@ int main(int argc, char** argv) }); #ifdef __serenity__ - if (pledge("stdio rpath wpath cpath proc exec tty accept sigaction unix fattr", nullptr) < 0) { + if (pledge("stdio rpath wpath cpath proc exec tty sigaction unix fattr", nullptr) < 0) { perror("pledge"); return 1; } |