cmd: Use toupperW instead of toupper.
This commit is contained in:
parent
e8606d5694
commit
2364a87d1b
|
@ -1263,7 +1263,7 @@ int p = 0;
|
|||
case '/':
|
||||
*q++ = *s++;
|
||||
while ((*s != '\0') && (*s != ' ') && *s != '/') {
|
||||
*q++ = toupper (*s++);
|
||||
*q++ = toupperW (*s++);
|
||||
}
|
||||
*q = '\0';
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue