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:
Vadim Zeitlin
2005-10-03 23:07:58 +00:00
parent 51e6392c54
commit 677856c9ef

View File

@@ -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() )