- Victor Martinez: ECHO command should write CRLF. Fixes regressions in several apps that depend on console output.

CORE-6916 #resolve #comment Committed in r58553.

svn path=/trunk/; revision=58553
This commit is contained in:
Aleksey Bragin 2013-03-18 21:23:35 +00:00
parent 392f0d06bf
commit b87a8c0e69

View file

@ -83,7 +83,7 @@ INT CommandEcho (LPTSTR param)
{ {
/* skip the first character */ /* skip the first character */
ConOutPuts(param + 1); ConOutPuts(param + 1);
ConOutPuts(_T("\n")); ConOutPuts(_T("\r\n"));
} }
return 0; return 0;
} }