From 1d6ed50dd014e426e56dddb855f513210626e58c Mon Sep 17 00:00:00 2001 From: bugreport0 <32939607+bugreport0@users.noreply.github.com> Date: Sun, 12 Dec 2021 19:41:11 +0100 Subject: [PATCH] ChessEngine: Remove unused 'rpath' promise --- Userland/Services/ChessEngine/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Userland/Services/ChessEngine/main.cpp b/Userland/Services/ChessEngine/main.cpp index 8060b79ccd..7f7902e359 100644 --- a/Userland/Services/ChessEngine/main.cpp +++ b/Userland/Services/ChessEngine/main.cpp @@ -12,9 +12,8 @@ ErrorOr serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio recvfd sendfd unix rpath")); - Core::EventLoop loop; TRY(Core::System::pledge("stdio recvfd sendfd unix")); + Core::EventLoop loop; TRY(Core::System::unveil(nullptr, nullptr)); auto engine = TRY(ChessEngine::try_create(Core::File::standard_input(), Core::File::standard_output()));