From 7a0fbb94b61895d2cfffc7edbcf7dffd40704d1f Mon Sep 17 00:00:00 2001 From: Luke Wilde Date: Fri, 27 Aug 2021 14:49:33 +0100 Subject: [PATCH] Pong: Remove wpath and cpath pledges With the move to LibConfig, these are no longer needed. --- Userland/Games/Pong/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Games/Pong/main.cpp b/Userland/Games/Pong/main.cpp index 48f835ddfc..a3c27290b1 100644 --- a/Userland/Games/Pong/main.cpp +++ b/Userland/Games/Pong/main.cpp @@ -15,14 +15,14 @@ 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; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio rpath wpath cpath recvfd sendfd", nullptr) < 0) { + if (pledge("stdio rpath recvfd sendfd", nullptr) < 0) { perror("pledge"); return 1; }