Gerald Pfeifer : comctl32: Fix type of loop variable in HEADER_DeleteItem.

Alexandre Julliard julliard at winehq.org
Mon Jul 21 08:52:25 CDT 2008


Module: wine
Branch: master
Commit: f3a031f2487101bd2dab90e664ae214d86da3f90
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f3a031f2487101bd2dab90e664ae214d86da3f90

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Fri Jul 18 17:24:56 2008 +0200

comctl32: Fix type of loop variable in HEADER_DeleteItem.

---

 dlls/comctl32/header.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/comctl32/header.c b/dlls/comctl32/header.c
index 9a2e3b7..3d16310 100644
--- a/dlls/comctl32/header.c
+++ b/dlls/comctl32/header.c
@@ -1073,7 +1073,7 @@ HEADER_DeleteItem (HWND hwnd, WPARAM wParam)
     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-cvs mailing list