mirror of
https://github.com/reactos/wine.git
synced 2025-03-02 09:47:59 +00:00
comctl32/tests: Use BOOL type where appropriate.
This commit is contained in:
parent
2de28eb64b
commit
fdb5e13f18
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user