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

winhlp32: Use BOOL type where appropriate.

parent 0666ac3e
......@@ -70,7 +70,7 @@ static void WINHELP_InitFonts(HWND hWnd)
#define FONTS_LEN (sizeof(logfontlist)/sizeof(*logfontlist))
static HFONT fonts[FONTS_LEN];
static BOOL init = 0;
static BOOL init = FALSE;
win->fonts_len = FONTS_LEN;
win->fonts = fonts;
......@@ -84,7 +84,7 @@ static void WINHELP_InitFonts(HWND hWnd)
fonts[i] = CreateFontIndirectW(&logfontlist[i]);
}
init = 1;
init = TRUE;
}
}
......
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