diff options
author | Luke Wilde <lukew@serenityos.org> | 2021-08-27 14:56:05 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-08-28 12:22:16 +0430 |
commit | fd51a3cf1544ed9aae456e30fe722b982fa141b3 (patch) | |
tree | ed213fe79ab8bc285a4c28e031ac6b44f7dc0f8d /Userland/Games | |
parent | 5d6fccc52bf95c48cb76650a25b66a7be89d9fdb (diff) | |
download | serenity-fd51a3cf1544ed9aae456e30fe722b982fa141b3.zip |
FlappyBug: Remove wpath and cpath pledges
With the move to LibConfig, these are no longer needed.
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/FlappyBug/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/FlappyBug/main.cpp b/Userland/Games/FlappyBug/main.cpp index 0acc47d6c6..38bdeefc4f 100644 --- a/Userland/Games/FlappyBug/main.cpp +++ b/Userland/Games/FlappyBug/main.cpp @@ -16,7 +16,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; } |