advpack: Fix typos.

This commit is contained in:
Paul Vriens 2006-10-31 15:17:31 +01:00 committed by Alexandre Julliard
parent 97e598b679
commit f8268719bf
1 changed files with 2 additions and 2 deletions

View File

@ -235,8 +235,8 @@ static void test_LaunchINFSectionEx()
/* try an invalid CAB filename */ /* try an invalid CAB filename */
lstrcpy(cmdline, CURR_DIR); lstrcpy(cmdline, CURR_DIR);
lstrcpy(cmdline, "\\"); lstrcat(cmdline, "\\");
lstrcpy(cmdline, "test.inf,DefaultInstall,c:imacab.cab,4"); lstrcat(cmdline, "test.inf,DefaultInstall,c:imacab.cab,4");
hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0); hr = pLaunchINFSectionEx(NULL, NULL, cmdline, 0);
ok(hr == 0, "Expected 0, got %d\n", hr); ok(hr == 0, "Expected 0, got %d\n", hr);