mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:52:56 +00:00
[CMD]
- 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:
parent
392f0d06bf
commit
b87a8c0e69
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue