forked from mia/Aegisub
More crash log writing fixes
This commit is contained in:
parent
40da549a56
commit
41ce8d7c31
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue