diff --git a/Userland/Libraries/LibWebView/Process.h b/Userland/Libraries/LibWebView/Process.h index 399f955fbcb..cfbca5edb69 100644 --- a/Userland/Libraries/LibWebView/Process.h +++ b/Userland/Libraries/LibWebView/Process.h @@ -76,7 +76,7 @@ ErrorOr> Process::spawn(ProcessType type, auto [core_process, transport] = TRY(spawn_and_connect_to_process(options)); auto client = TRY(adopt_nonnull_ref_or_enomem(new (nothrow) ClientType { move(transport), forward(client_arguments)... })); - return ProcessAndClient { Process { type, client, move(core_process) }, client }; + return ProcessAndClient { Process { type, client, move(core_process) }, client }; } }