Module: wine Branch: master Commit: 45eff32ad0bf121771b9b4b57446244e3fb82d93 URL: http://source.winehq.org/git/wine.git/?a=commit;h=45eff32ad0bf121771b9b4b574...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Fri Nov 1 00:21:23 2013 +0100
imm32/tests: Use BOOL type where appropriate.
---
dlls/imm32/tests/imm32.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index a37190c..7275fe3 100644 --- a/dlls/imm32/tests/imm32.c +++ b/dlls/imm32/tests/imm32.c @@ -797,7 +797,8 @@ static void test_ImmGetIMCLockCount(void) static void test_ImmGetIMCCLockCount(void) { HIMCC imcc; - DWORD count, g_count, ret, i; + DWORD count, g_count, i; + BOOL ret; VOID *p;
imcc = ImmCreateIMCC(sizeof(CANDIDATEINFO));