pwd: Add missing rpath pledge

This commit is contained in:
Jean-Baptiste Boric 2022-01-21 19:30:56 +01:00 committed by Andreas Kling
parent f3139b100c
commit 7fe7eab308
Notes: sideshowbarker 2024-07-17 20:30:37 +09:00

View file

@ -11,7 +11,7 @@
ErrorOr<int> serenity_main(Main::Arguments)
{
TRY(Core::System::pledge("stdio"));
TRY(Core::System::pledge("rpath stdio"));
outln(TRY(Core::System::getcwd()));
return 0;
}