aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFRefCount.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-05-15 06:02:08 +0000
committerTed Kremenek <kremenek@apple.com>2009-05-15 06:02:08 +0000
commitdaec145780d80ea56a8df21182212c396941b58d (patch)
tree3882a2c9cf343252eb14f658451a1a93f6566f7e /lib/Analysis/CFRefCount.cpp
parent57315955d7dd9dee8d652fdefc090a771d961e3e (diff)
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
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r--lib/Analysis/CFRefCount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 4b2c394c88..67b364496b 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -3415,7 +3415,7 @@ CFRefCount::HandleAutoreleaseCounts(GRStateRef state, GenericNodeBuilder Bd,
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 ";