diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CompilerDriver/Action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CompilerDriver/Action.cpp b/lib/CompilerDriver/Action.cpp index 5917af6..5f30dce 100644 --- a/lib/CompilerDriver/Action.cpp +++ b/lib/CompilerDriver/Action.cpp @@ -39,7 +39,7 @@ namespace { } void PrintCommand (const std::string& Cmd, const StrVector& Args) { - errs() << Cmd << " "; + errs() << Cmd << ' '; std::for_each(Args.begin(), Args.end(), &PrintString); errs() << '\n'; } @@ -89,7 +89,7 @@ namespace { int ret = sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]); if (IsSegmentationFault(ret)) { - errs() << "Segmentation fault:"; + errs() << "Segmentation fault: "; PrintCommand(name, args); } |