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
Notes: sideshowbarker 2024-07-17 14:28:31 +09:00

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;