Commit 2364a87d authored by Anatoly Lyutin's avatar Anatoly Lyutin Committed by Alexandre Julliard

cmd: Use toupperW instead of toupper.

parent e8606d56
......@@ -1263,7 +1263,7 @@ int p = 0;
case '/':
*q++ = *s++;
while ((*s != '\0') && (*s != ' ') && *s != '/') {
*q++ = toupper (*s++);
*q++ = toupperW (*s++);
}
*q = '\0';
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment