summaryrefslogtreecommitdiff
path: root/Userland/Games
diff options
context:
space:
mode:
authorLuke Wilde <lukew@serenityos.org>2021-08-27 14:56:05 +0100
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-08-28 12:22:16 +0430
commitfd51a3cf1544ed9aae456e30fe722b982fa141b3 (patch)
treeed213fe79ab8bc285a4c28e031ac6b44f7dc0f8d /Userland/Games
parent5d6fccc52bf95c48cb76650a25b66a7be89d9fdb (diff)
downloadserenity-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.cpp2
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;
}