summaryrefslogtreecommitdiffstats
path: root/microbe/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'microbe/main.cpp')
-rw-r--r--microbe/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/microbe/main.cpp b/microbe/main.cpp
index 7b6d5ab..affa666 100644
--- a/microbe/main.cpp
+++ b/microbe/main.cpp
@@ -64,14 +64,14 @@ int main(int argc, char **argv)
if ( !errorReport.isEmpty() )
{
- cerr << mb.errorReport();
+ cerr << mb.errorReport().local8Bit();
return 1; // If there was an error, don't write the output to file.
}
else
{
ofstream out(args->arg(1));
- out << s;
+ out << s.local8Bit();
return 0;
}
}