imm32: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-15 02:44:42 +01:00 committed by Alexandre Julliard
parent 387289e547
commit bf34d0c3af
1 changed files with 2 additions and 2 deletions

View File

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