=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: imm32: Use boolean return value in boolean function.

Alexandre Julliard julliard at winehq.org
Wed Jan 29 14:53:33 CST 2014


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Mon Jan 27 22:26:45 2014 +0100

imm32: Use boolean return value in boolean function.

---

 dlls/imm32/imm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index 5991b8b..ccef19d 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -1397,7 +1397,7 @@ BOOL WINAPI ImmGetCompositionWindow(HIMC hIMC, LPCOMPOSITIONFORM lpCompForm)
         return FALSE;
 
     *lpCompForm = data->IMC.cfCompForm;
-    return 1;
+    return TRUE;
 }
 
 /***********************************************************************




More information about the wine-cvs mailing list