Author: tkreuzer Date: Tue May 1 21:03:06 2012 New Revision: 56472
URL: http://svn.reactos.org/svn/reactos?rev=56472&view=rev Log: [CMD] Fix a typo
Modified: trunk/reactos/base/shell/cmd/echo.c
Modified: trunk/reactos/base/shell/cmd/echo.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/echo.c?rev=5... ============================================================================== --- trunk/reactos/base/shell/cmd/echo.c [iso-8859-1] (original) +++ trunk/reactos/base/shell/cmd/echo.c [iso-8859-1] Tue May 1 21:03:06 2012 @@ -83,7 +83,7 @@ { /* skip the first character */ ConOutPuts(param + 1); - ConOutPuts("\n"); + ConOutPuts(_T("\n")); } return 0; }