Commit 24866e79 authored by Anatoly Lyutin's avatar Anatoly Lyutin Committed by Alexandre Julliard

cmd: Use toupperW instead of toupper.

parent 14ab7d76
......@@ -2303,7 +2303,7 @@ BOOL WCMD_ask_confirm (WCHAR *message, BOOL showSureText, BOOL *optionAll) {
WCMD_output_asis (endBkt);
WCMD_ReadFile (GetStdHandle(STD_INPUT_HANDLE), answer,
sizeof(answer)/sizeof(WCHAR), &count, NULL);
answer[0] = toupper(answer[0]);
answer[0] = toupperW(answer[0]);
}
/* Return the answer */
......
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