Commit 2df06218 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Remove an unused parameter.

parent 556a01d7
...@@ -2096,7 +2096,7 @@ static UINT find_registry_key(HKEY hkeyParent, LPCSTR subkey, LPCSTR findkey, HK ...@@ -2096,7 +2096,7 @@ static UINT find_registry_key(HKEY hkeyParent, LPCSTR subkey, LPCSTR findkey, HK
return (found ? ERROR_SUCCESS : ERROR_FILE_NOT_FOUND); return (found ? ERROR_SUCCESS : ERROR_FILE_NOT_FOUND);
} }
static void test_Installer_InstallProduct(LPCWSTR szPath) static void test_Installer_InstallProduct(void)
{ {
HRESULT hr; HRESULT hr;
CHAR path[MAX_PATH]; CHAR path[MAX_PATH];
...@@ -2381,7 +2381,7 @@ static void test_Installer(void) ...@@ -2381,7 +2381,7 @@ static void test_Installer(void)
} }
/* Installer::InstallProduct and other tests that depend on our product being installed */ /* Installer::InstallProduct and other tests that depend on our product being installed */
test_Installer_InstallProduct(szPath); test_Installer_InstallProduct();
} }
START_TEST(automation) START_TEST(automation)
......
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