Gerald Pfeifer : wininet: Fix type of a loop variable in HTTP_BuildHeaderRequestStr().

Alexandre Julliard julliard at winehq.org
Mon Jan 14 09:33:24 CST 2008


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

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Sat Jan 12 20:14:04 2008 +0100

wininet: Fix type of a loop variable in HTTP_BuildHeaderRequestStr().

---

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

diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c
index b9f56d2..50d61da 100644
--- a/dlls/wininet/http.c
+++ b/dlls/wininet/http.c
@@ -262,7 +262,7 @@ static LPWSTR HTTP_BuildHeaderRequestString( LPWININETHTTPREQW lpwhr, LPCWSTR ve
     LPWSTR requestString;
     DWORD len, n;
     LPCWSTR *req;
-    INT i;
+    UINT i;
     LPWSTR p;
 
     static const WCHAR szSpace[] = { ' ',0 };




More information about the wine-cvs mailing list