From fd51a3cf1544ed9aae456e30fe722b982fa141b3 Mon Sep 17 00:00:00 2001 From: Luke Wilde Date: Fri, 27 Aug 2021 14:56:05 +0100 Subject: [PATCH] FlappyBug: Remove wpath and cpath pledges With the move to LibConfig, these are no longer needed. --- Userland/Games/FlappyBug/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Games/FlappyBug/main.cpp b/Userland/Games/FlappyBug/main.cpp index 0acc47d6c6d..38bdeefc4f9 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; }