diff --git a/Userland/Libraries/LibSQL/SQLClient.cpp b/Userland/Libraries/LibSQL/SQLClient.cpp index 923a1156113..00618df647e 100644 --- a/Userland/Libraries/LibSQL/SQLClient.cpp +++ b/Userland/Libraries/LibSQL/SQLClient.cpp @@ -85,7 +85,7 @@ static ErrorOr launch_server(DeprecatedString const& socket_path, Deprecat "--pid-file"sv, pid_path, }; - auto result = Core::System::exec(arguments[0], arguments, Core::System::SearchInPath::Yes); + result = Core::System::exec(arguments[0], arguments, Core::System::SearchInPath::Yes); if (!result.is_error()) break; }