msi: Remove an unused parameter.

This commit is contained in:
James Hawkins 2007-11-05 04:45:32 -05:00 committed by Alexandre Julliard
parent 556a01d7c5
commit 2df062182a
1 changed files with 2 additions and 2 deletions

View File

@ -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)
} }
/* 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)