cmd: Use toupperW instead of toupper.

This commit is contained in:
Anatoly Lyutin 2007-07-19 16:39:51 +04:00 committed by Alexandre Julliard
parent e8606d5694
commit 2364a87d1b

View File

@ -1263,7 +1263,7 @@ int p = 0;
case '/': case '/':
*q++ = *s++; *q++ = *s++;
while ((*s != '\0') && (*s != ' ') && *s != '/') { while ((*s != '\0') && (*s != ' ') && *s != '/') {
*q++ = toupper (*s++); *q++ = toupperW (*s++);
} }
*q = '\0'; *q = '\0';
break; break;