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
1 changed files with 1 additions and 1 deletions

View File

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