Francois Gouget : imm32: Fix an ASCII / ANSI mixup in a comment.
Module: wine Branch: master Commit: 2eb4b19f5f1beafe5fd123c63ca435bedcabd303 URL: https://source.winehq.org/git/wine.git/?a=commit;h=2eb4b19f5f1beafe5fd123c63... Author: Francois Gouget <fgouget(a)free.fr> Date: Tue Aug 24 10:24:01 2021 +0200 imm32: Fix an ASCII / ANSI mixup in a comment. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/imm32/imm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index 9d2a09f22be..20633041871 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -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 );
participants (1)
-
Alexandre Julliard