Use "%ld" instead of "%d" to format long values, using "%d" results in an
assert failure under LP64 systems as int and long have different sizes there.
Closes #14311.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71469
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ((int)(m_threadWorkersDone+m_eventWorkersDone) == m_maxConnections)
{
if ((int)(m_threadWorkersDone+m_eventWorkersDone) == m_maxConnections)
{
- wxLogMessage("%d connection(s) served, exiting",m_maxConnections);
+ wxLogMessage("%ld connection(s) served, exiting",m_maxConnections);
if (pParser.Found("m",&m_maxConnections))
{
if (pParser.Found("m",&m_maxConnections))
{
- wxLogMessage("%d connection(s) to exit",m_maxConnections);
+ wxLogMessage("%ld connection(s) to exit",m_maxConnections);
{
if (it->GetData() == pEvent.m_sender)
{
{
if (it->GetData() == pEvent.m_sender)
{
- wxLogVerbose("Deleting thread worker (%d left)",
- m_threadWorkers.GetCount());
+ wxLogVerbose("Deleting thread worker (%lu left)",
+ static_cast<unsigned long>( m_threadWorkers.GetCount() ));
it->GetData()->Wait();
delete it->GetData();
m_threadWorkers.DeleteNode(it);
it->GetData()->Wait();
delete it->GetData();
m_threadWorkers.DeleteNode(it);
{
if (it2->GetData() == pEvent.m_sender)
{
{
if (it2->GetData() == pEvent.m_sender)
{
- wxLogVerbose("Deleting event worker (%d left)",
- m_eventWorkers.GetCount());
+ wxLogVerbose("Deleting event worker (%lu left)",
+ static_cast<unsigned long>( m_eventWorkers.GetCount() ));
delete it2->GetData();
m_eventWorkers.DeleteNode(it2);
if (!pEvent.m_workerFailed)
delete it2->GetData();
m_eventWorkers.DeleteNode(it2);
if (!pEvent.m_workerFailed)
}
// Print the contents type and file size
}
// Print the contents type and file size
- wxLogMessage("Contents type: %s\nFile size: %i\nStarting to download...",
+ wxLogMessage("Contents type: %s\nFile size: %lu\nStarting to download...",
url.GetProtocol().GetContentType(),
url.GetProtocol().GetContentType(),
+ static_cast<unsigned long>( data->GetSize() ));
// Get the data
wxStringOutputStream sout;
// Get the data
wxStringOutputStream sout;