=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: imm32: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Fri Nov 15 13:14:29 CST 2013


Module: wine
Branch: master
Commit: bf34d0c3af8232042748c399cbd1adfcdc7d0ff0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bf34d0c3af8232042748c399cbd1adfcdc7d0ff0

Author: Frédéric Delanoy <frederic.delanoy at 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;
 }




More information about the wine-cvs mailing list