From 682c89ced33d37a4c14324c9ba41c31034d04a7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Wed, 16 Oct 2013 23:38:32 +0200 Subject: [PATCH] wordpad: Use BOOL type where appropriate. --- programs/wordpad/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wordpad/print.c b/programs/wordpad/print.c index eb48e48e5e7..9021989df66 100644 --- a/programs/wordpad/print.c +++ b/programs/wordpad/print.c @@ -1141,7 +1141,7 @@ LRESULT CALLBACK preview_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { POINT pt; RECT rc; - int bHittest = FALSE; + int bHittest = 0; DWORD messagePos = GetMessagePos(); pt.x = (short)LOWORD(messagePos); pt.y = (short)HIWORD(messagePos);