Commit 3f1a20b8 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent 5426cd63
......@@ -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 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment