More crash log writing fixes

This commit is contained in:
Thomas Goyne 2013-12-23 10:19:01 -08:00
parent 4afda8cbdb
commit 9dfe12d3d7
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ void StackWalker::OnStackFrame(wxStackFrame const& frame) {
fp << boost::format("%03u - %p: %s") % frame.GetLevel() % frame.GetAddress() % frame.GetName().utf8_str().data();
if (frame.HasSourceLocation())
fp << boost::format(" on %s:%u") % frame.GetFileName().utf8_str().data(), frame.GetLine();
fp << boost::format(" on %s:%u") % frame.GetFileName().utf8_str().data() % frame.GetLine();
fp << "\n";
}