imm32: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Thu Nov 14 19:44:42 CST 2013


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




More information about the wine-patches mailing list