Commit fdb5e13f authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

comctl32/tests: Use BOOL type where appropriate.

parent 2de28eb6
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment