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; }