From bf34d0c3af8232042748c399cbd1adfcdc7d0ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Fri, 15 Nov 2013 02:44:42 +0100 Subject: [PATCH] imm32: Use BOOL type where appropriate. --- dlls/imm32/imm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index 35c16f09255..5991b8bd5bd 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; }