dlls/comctl32/header.c type fix

Gerald Pfeifer gerald at pfeifer.com
Fri Jul 18 10:24:56 CDT 2008


ChangeLog:
Fix type of loop variable in HEADER_DeleteItem.

Index: dlls/comctl32/header.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/header.c,v
retrieving revision 1.146
diff -u -3 -p -r1.146 header.c
--- dlls/comctl32/header.c	20 Jun 2008 11:24:04 -0000	1.146
+++ dlls/comctl32/header.c	18 Jul 2008 15:24:25 -0000
@@ -1073,7 +1073,7 @@ HEADER_DeleteItem (HWND hwnd, WPARAM wPa
     HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
     INT iItem = (INT)wParam;
     INT iOrder;
-    INT i;
+    UINT i;
 
     TRACE("[iItem=%d]\n", iItem);
 



More information about the wine-patches mailing list