comctl32/tests: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-14 10:44:27 +01:00 committed by Alexandre Julliard
parent 2de28eb64b
commit fdb5e13f18
1 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ static HWND create_a_window(void)
char className[] = "bmwnd";
char winName[] = "Test Bitmap";
HWND hWnd;
static int registered = 0;
static BOOL registered = FALSE;
if (!registered)
{
@ -152,7 +152,7 @@ static HWND create_a_window(void)
cls.lpszClassName = className;
RegisterClassA (&cls);
registered = 1;
registered = TRUE;
}
/* Setup window */