wininet: Use ~0u instead of ~0ul for DWORD values.

This commit is contained in:
Alexandre Julliard 2009-01-05 12:40:39 +01:00
parent 690d112182
commit 97da2e57fb

View file

@ -1695,7 +1695,7 @@ static DWORD HTTP_ReadChunked(WININETHTTPREQW *req, void *buffer, DWORD size, DW
{
if (*read == size) break;
if (req->dwContentLength == ~0UL) /* new chunk */
if (req->dwContentLength == ~0u) /* new chunk */
{
buflen = sizeof(reply);
if (!NETCON_getNextLine(&req->netConnection, reply, &buflen)) break;
@ -1736,7 +1736,7 @@ static DWORD HTTP_ReadChunked(WININETHTTPREQW *req, void *buffer, DWORD size, DW
if (req->dwContentRead == req->dwContentLength) /* chunk complete */
{
req->dwContentRead = 0;
req->dwContentLength = ~0UL;
req->dwContentLength = ~0u;
buflen = sizeof(reply);
if (!NETCON_getNextLine(&req->netConnection, reply, &buflen))