dlls/wininet/http.c -- loop variable

Gerald Pfeifer gerald at pfeifer.com
Sat Jan 12 13:14:04 CST 2008


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

Gerald

Index: dlls/wininet/http.c
===================================================================
RCS file: /home/wine/wine/dlls/wininet/http.c,v
retrieving revision 1.211
diff -u -3 -p -r1.211 http.c
--- dlls/wininet/http.c	7 Jan 2008 14:41:35 -0000	1.211
+++ dlls/wininet/http.c	12 Jan 2008 19:12:56 -0000
@@ -262,7 +262,7 @@ static LPWSTR HTTP_BuildHeaderRequestStr
     LPWSTR requestString;
     DWORD len, n;
     LPCWSTR *req;
-    INT i;
+    UINT i;
     LPWSTR p;
 
     static const WCHAR szSpace[] = { ' ',0 };



More information about the wine-patches mailing list