From b90f764c1153bc6e0297c2356844c106817ba0b9 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 1 May 2012 21:03:06 +0000 Subject: [PATCH] [CMD] Fix a typo svn path=/trunk/; revision=56472 --- reactos/base/shell/cmd/echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/shell/cmd/echo.c b/reactos/base/shell/cmd/echo.c index 8743a912025..e8114a734ab 100644 --- a/reactos/base/shell/cmd/echo.c +++ b/reactos/base/shell/cmd/echo.c @@ -83,7 +83,7 @@ INT CommandEcho (LPTSTR param) { /* skip the first character */ ConOutPuts(param + 1); - ConOutPuts("\n"); + ConOutPuts(_T("\n")); } return 0; } -- 2.17.1