Fix format specifier for DWORD in wxWebRequestWinHTTP code
This fixes assertion failure when running under Win64 due to the size mismatch between DWORD and size_t on this platform.
This commit is contained in:
@@ -149,7 +149,7 @@ wxWebRequestWinHTTP::HandleCallback(DWORD dwInternetStatus,
|
||||
LPVOID lpvStatusInformation,
|
||||
DWORD dwStatusInformationLength)
|
||||
{
|
||||
wxLogTrace(wxTRACE_WEBREQUEST, "Request %p: callback %08x, len=%zu",
|
||||
wxLogTrace(wxTRACE_WEBREQUEST, "Request %p: callback %08x, len=%lu",
|
||||
this, dwInternetStatus, dwStatusInformationLength);
|
||||
|
||||
switch ( dwInternetStatus )
|
||||
|
Reference in New Issue
Block a user