Commit cf8e9e33 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Remove an unused parameter.

parent bb54ed13
......@@ -4438,7 +4438,7 @@ static UINT ACTION_InstallServices( MSIPACKAGE *package )
}
/* converts arg1[~]arg2[~]arg3 to a list of ptrs to the strings */
static LPCWSTR *msi_service_args_to_vector(LPCWSTR name, LPWSTR args, DWORD *numargs)
static LPCWSTR *msi_service_args_to_vector(LPWSTR args, DWORD *numargs)
{
LPCWSTR *vector;
LPWSTR p, q;
......@@ -4512,7 +4512,7 @@ static UINT ITERATE_StartService(MSIRECORD *rec, LPVOID param)
goto done;
}
vector = msi_service_args_to_vector(name, args, &numargs);
vector = msi_service_args_to_vector(args, &numargs);
if (!StartServiceW(service, numargs, vector))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment