wininet: Avoid size_t in ERR().

oldstable
Austin English 2010-07-01 13:02:01 -05:00 committed by Alexandre Julliard
parent afdc767cd3
commit eff0aeccef
1 changed files with 2 additions and 2 deletions

View File

@ -431,7 +431,7 @@ static BOOL set_cookie(LPCWSTR domain, LPCWSTR path, LPCWSTR cookie_name, LPCWST
value = data = heap_strdupW(cookie_data);
if (!data)
{
ERR("could not allocate %zu bytes for the cookie data buffer\n", (strlenW(cookie_data) + 1) * sizeof(WCHAR));
ERR("could not allocate the cookie data buffer\n");
return FALSE;
}
@ -457,7 +457,7 @@ static BOOL set_cookie(LPCWSTR domain, LPCWSTR path, LPCWSTR cookie_name, LPCWST
if (value == NULL)
{
HeapFree(GetProcessHeap(), 0, data);
ERR("could not allocate %zu bytes for the cookie value buffer\n", (ptr - data) * sizeof(WCHAR));
ERR("could not allocate the cookie value buffer\n");
return FALSE;
}
strcpyW(value, data);