user.exe16: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Mon Nov 25 15:27:37 CST 2013


---
 dlls/user.exe16/user.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user.exe16/user.c b/dlls/user.exe16/user.c
index 7a518b3..d16a1b4 100644
--- a/dlls/user.exe16/user.c
+++ b/dlls/user.exe16/user.c
@@ -560,11 +560,11 @@ BOOL16 WINAPI ClipCursor16( const RECT16 *rect )
 BOOL16 WINAPI GetCursorPos16( POINT16 *pt )
 {
     POINT pos;
-    if (!pt) return 0;
+    if (!pt) return FALSE;
     GetCursorPos(&pos);
     pt->x = pos.x;
     pt->y = pos.y;
-    return 1;
+    return TRUE;
 }
 
 
-- 
1.8.4.4




More information about the wine-patches mailing list