1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

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

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;
}