Skip to content

Commit 4ebef32

Browse files
committed
init: Use implicit default parameters of Core::System::spawn()
1 parent a9fef34 commit 4ebef32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Userland/Utilities/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static ErrorOr<void> populate_device_node_with_symlink(DeviceNodeType device_nod
4646

4747
static ErrorOr<void> spawn_device_mapper_process()
4848
{
49-
TRY(Core::Process::spawn("/bin/DeviceMapper"sv, ReadonlySpan<StringView> {}, {}, Core::Process::KeepAsChild::No));
49+
TRY(Core::Process::spawn("/bin/DeviceMapper"sv, ReadonlySpan<StringView> {}));
5050
return {};
5151
}
5252

0 commit comments

Comments
 (0)