Module: wine Branch: master Commit: 3f1a20b8b1848475aed6435a075c8f3d4aaa7ca7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f1a20b8b1848475aed6435a07...
Author: Gerald Pfeifer gerald@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 };