Frédéric Delanoy : imm32: Use BOOL type where appropriate.
Module: wine Branch: master Commit: bf34d0c3af8232042748c399cbd1adfcdc7d0ff0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bf34d0c3af8232042748c399cb... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Fri Nov 15 02:44:42 2013 +0100 imm32: Use BOOL type where appropriate. --- dlls/imm32/imm.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index 35c16f0..5991b8b 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -2086,11 +2086,11 @@ BOOL WINAPI ImmRegisterWordW( */ BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC) { - static int shown = 0; + static BOOL shown = FALSE; if (!shown) { FIXME("(%p, %p): stub\n", hWnd, hIMC); - shown = 1; + shown = TRUE; } return TRUE; }
participants (1)
-
Alexandre Julliard