From a9844e64d782318795f09fee0f90d6de581a2054 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Thu, 4 Sep 2008 09:35:06 +0000 Subject: [PATCH] add an empty line to make our cmd happy svn path=/trunk/; revision=35926 --- reactos/dll/win32/syssetup/wizard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/dll/win32/syssetup/wizard.c b/reactos/dll/win32/syssetup/wizard.c index 2ff148f04b8..587984275b7 100644 --- a/reactos/dll/win32/syssetup/wizard.c +++ b/reactos/dll/win32/syssetup/wizard.c @@ -2232,6 +2232,7 @@ ProcessUnattendInf(HINF hUnattendedInf) 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); }