Author: fireball
Date: Thu Aug 31 18:14:42 2006
New Revision: 23842
URL:
http://svn.reactos.org/svn/reactos?rev=23842&view=rev
Log:
Sylvain Petreolle: Partly fix unicode build of cmd (a typo)
Modified:
trunk/reactos/base/shell/cmd/cmdinput.c
Modified: trunk/reactos/base/shell/cmd/cmdinput.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/cmdinput.c?…
==============================================================================
--- trunk/reactos/base/shell/cmd/cmdinput.c (original)
+++ trunk/reactos/base/shell/cmd/cmdinput.c Thu Aug 31 18:14:42 2006
@@ -521,7 +521,7 @@
}
#ifdef _UNICODE
ch = ir.Event.KeyEvent.uChar.UnicodeChar;
- if ((ch >= 32 && (charcount != (maxlen - 2)) &&
bCharInput)
+ if (ch >= 32 && (charcount != (maxlen - 2)) &&
bCharInput)
#else
ch = ir.Event.KeyEvent.uChar.AsciiChar;
if ((UCHAR)ch >= 32 && (charcount != (maxlen - 2)) &&
bCharInput)