Remove extra whitespace character in string literal.  Purely cosmetic.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71847 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 4b2c394..67b3644 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -3415,7 +3415,7 @@
     
     std::string sbuf;
     llvm::raw_string_ostream os(sbuf);
-    os << "Object over-autoreleased: object was sent -autorelease " ;
+    os << "Object over-autoreleased: object was sent -autorelease";
     if (V.getAutoreleaseCount() > 1)
       os << V.getAutoreleaseCount() << " times";
     os << " but the object has ";