Utilities: Use default execpromises parameter to pledge(..)

This commit is contained in:
Brian Gianforcaro 2022-04-03 16:16:06 -07:00 committed by Brian Gianforcaro
commit af3751e4dd
Notes: sideshowbarker 2024-07-17 14:28:35 +09:00
18 changed files with 21 additions and 21 deletions

View file

@ -40,7 +40,7 @@ private:
ErrorOr<int> serenity_main(Main::Arguments main_arguments)
{
TRY(Core::System::pledge("stdio rpath proc exec", nullptr));
TRY(Core::System::pledge("stdio rpath proc exec"));
char const* placeholder = nullptr;
bool split_with_nulls = false;