Print a space after the colon.
authorMikhail Glushenkov <foldr@codedgers.com>
Thu, 20 May 2010 21:11:37 +0000 (21:11 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Thu, 20 May 2010 21:11:37 +0000 (21:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104279 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CompilerDriver/Action.cpp

index 5917af6faae508cf6bb79d229d5a0402eaafe705..5f30dce5855fd42293b3b58663bce7c249809865 100644 (file)
@@ -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);
     }