cmd: Use DOS newlines, not UNIX.

This commit is contained in:
Austin English 2009-12-22 21:04:20 -06:00 committed by Alexandre Julliard
parent f8aef24795
commit cc72c4d346
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ HINSTANCE hinst;
DWORD errorlevel; DWORD errorlevel;
int echo_mode = 1, verify_mode = 0, defaultColor = 7; int echo_mode = 1, verify_mode = 0, defaultColor = 7;
static int opt_c, opt_k, opt_s; static int opt_c, opt_k, opt_s;
const WCHAR newline[] = {'\n','\0'}; const WCHAR newline[] = {'\r','\n','\0'};
static const WCHAR equalsW[] = {'=','\0'}; static const WCHAR equalsW[] = {'=','\0'};
static const WCHAR closeBW[] = {')','\0'}; static const WCHAR closeBW[] = {')','\0'};
WCHAR anykey[100]; WCHAR anykey[100];