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

This commit is contained in:
Gerald Pfeifer 2008-01-12 20:14:04 +01:00 committed by Alexandre Julliard
parent 5426cd6317
commit 3f1a20b8b1
1 changed files with 1 additions and 1 deletions

View File

@ -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 };