imm32: Fix an ASCII / ANSI mixup in a comment.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-08-24 10:24:01 +02:00 committed by Alexandre Julliard
parent 8188b1ac84
commit 2eb4b19f5f
1 changed files with 1 additions and 1 deletions

View File

@ -1755,7 +1755,7 @@ UINT WINAPI ImmGetDescriptionA(
/* fetch the unicode buffer */
len = ImmGetDescriptionW( hKL, buf, len + 1 );
/* convert it back to ASCII */
/* convert it back to ANSI */
len = WideCharToMultiByte( CP_ACP, 0, buf, len + 1,
lpszDescription, uBufLen, NULL, NULL );