don't use %08p format string, gcc complains about it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -734,8 +734,7 @@ static wxString GetAssertStackTrace()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_stackTrace << wxString::Format(_T("0x%08p"),
|
m_stackTrace << wxString::Format(_T("%p"), frame.GetAddress());
|
||||||
frame.GetAddress());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( frame.HasSourceLocation() )
|
if ( frame.HasSourceLocation() )
|
||||||
|
Reference in New Issue
Block a user