Frédéric Delanoy : winhlp32: Use BOOL type where appropriate.
Module: wine Branch: master Commit: 6eadc8ca4efe2758a7de336f32e8832af6f0ca94 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6eadc8ca4efe2758a7de336f32... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Tue Oct 22 00:16:10 2013 +0200 winhlp32: Use BOOL type where appropriate. --- programs/winhlp32/winhelp.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/winhlp32/winhelp.c b/programs/winhlp32/winhelp.c index 3a421da..cb1ac55 100644 --- a/programs/winhlp32/winhelp.c +++ b/programs/winhlp32/winhelp.c @@ -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; } }
participants (1)
-
Alexandre Julliard