From 723b44631c5e494d43ff946b4f7c77c2551537b6 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Thu, 4 Sep 2008 09:48:28 +0000 Subject: [PATCH] hardcode c:\reactos\bin for testing (only used in regtest code) svn path=/trunk/; revision=35927 --- reactos/dll/win32/syssetup/wizard.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/dll/win32/syssetup/wizard.c b/reactos/dll/win32/syssetup/wizard.c index 587984275b7..317f064344f 100644 --- a/reactos/dll/win32/syssetup/wizard.c +++ b/reactos/dll/win32/syssetup/wizard.c @@ -2226,13 +2226,12 @@ ProcessUnattendInf(HINF hUnattendedInf) szPath[length] = '\\'; length++; } - strcpy(&szPath[length], "dbgprint.exe --winetest %windir%\bin\version_winetest.exe\n"); + strcpy(&szPath[length], "dbgprint.exe --winetest c:\reactos\bin\version_winetest.exe\n"); fwrite(szPath, 1, strlen(szPath) + 1, file); strcpy(&szPath[length], "dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n"); fwrite(szPath, 1, strlen(szPath) + 1, file); strcpy(&szPath[length], "shutdown.exe -s"); fwrite(szPath, 1, strlen(szPath) + 1, file); - fprintf(file, "%s\n", ""); } fclose(file); }