cmd: Use toupperW instead of toupper.
This commit is contained in:
parent
e8606d5694
commit
2364a87d1b
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user