mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
ChessEngine: Remove unused 'rpath' promise
This commit is contained in:
parent
79805a3f80
commit
1d6ed50dd0
Notes:
sideshowbarker
2024-07-17 21:45:35 +09:00
Author: https://github.com/bugreport0 Commit: https://github.com/SerenityOS/serenity/commit/1d6ed50dd01 Pull-request: https://github.com/SerenityOS/serenity/pull/11234 Reviewed-by: https://github.com/alimpfard
1 changed files with 1 additions and 2 deletions
|
@ -12,9 +12,8 @@
|
|||
|
||||
ErrorOr<int> 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()));
|
||||
|
|
Loading…
Reference in a new issue