1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:07:45 +00:00

ls: Use Core::System::pledge(..) instead of LibC API

This commit is contained in:
Brian Gianforcaro 2022-04-03 16:17:11 -07:00 committed by Brian Gianforcaro
parent af3751e4dd
commit 7eaf1cfdc2

View file

@ -94,10 +94,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
flag_colorize = true;
}
if (pledge("stdio rpath", nullptr) < 0) {
perror("pledge");
return 1;
}
TRY(Core::System::pledge("stdio rpath"));
Vector<StringView> paths;