From cf8e9e3311b611dda88d617fa1625e3aa90d3686 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 5 Nov 2007 04:37:44 -0500 Subject: [PATCH] msi: Remove an unused parameter. --- dlls/msi/action.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 6789e3048b..e7d0a8e9a8 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -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)) { -- 2.32.0.93.g670b81a890