cmd: Use toupperW instead of toupper.

This commit is contained in:
Anatoly Lyutin 2007-07-09 12:27:50 +04:00 committed by Alexandre Julliard
parent 14ab7d766f
commit 24866e7906
1 changed files with 1 additions and 1 deletions

View File

@ -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 */