From 9dfe12d3d7cbf94b97ffbae81e2bfbca6adcca94 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 23 Dec 2013 10:19:01 -0800 Subject: [PATCH] More crash log writing fixes --- aegisub/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/main.cpp b/aegisub/src/main.cpp index c25070a7c..3f4517f3a 100644 --- a/aegisub/src/main.cpp +++ b/aegisub/src/main.cpp @@ -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"; }