From 3a4829220421325665ac20ba0f0ff464db3c0646 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Thu, 20 May 2010 21:11:37 +0000 Subject: Print a space after the colon. llvm-svn: 104279 --- llvm/lib/CompilerDriver/Action.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/CompilerDriver/Action.cpp') diff --git a/llvm/lib/CompilerDriver/Action.cpp b/llvm/lib/CompilerDriver/Action.cpp index 5917af6faae..5f30dce5855 100644 --- a/llvm/lib/CompilerDriver/Action.cpp +++ b/llvm/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); } -- cgit v1.2.3