diff win/dw.c @ 339:4482dd0bb87d

Minor fix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 10 Apr 2003 12:37:28 +0000
parents e9a424e641ff
children 503d1ac958bb
line wrap: on
line diff
--- a/win/dw.c	Thu Apr 10 12:36:08 2003 +0000
+++ b/win/dw.c	Thu Apr 10 12:37:28 2003 +0000
@@ -3521,7 +3521,7 @@
  */
 void API dw_window_pointer(HWND handle, int pointertype)
 {
-	SetCursor(pointer < 65536 ? LoadCursor(NULL, MAKEINTRESOURCE(pointertype)) (HCURSOR)pointertype);
+	SetCursor(pointertype < 65536 ? LoadCursor(NULL, MAKEINTRESOURCE(pointertype)) : (HCURSOR)pointertype);
 }
 
 /*