Commit 631f469c authored by Alexandre Julliard's avatar Alexandre Julliard

wininet: Avoid size_t type in trace.

parent faa54aea
......@@ -1628,8 +1628,7 @@ static DWORD get_chunk_size(const char *buffer)
static DWORD HTTP_ReadChunked(WININETHTTPREQW *req, void *buffer, DWORD size, DWORD *read, BOOL sync)
{
char reply[MAX_REPLY_LEN], *p = buffer;
DWORD buflen, to_write = size;
size_t to_read;
DWORD buflen, to_read, to_write = size;
int bytes_read;
*read = 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