wordpad: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Wed Oct 16 16:38:32 CDT 2013


---
 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 eb48e48..9021989 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);
-- 
1.8.4




More information about the wine-patches mailing list