diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-18 05:13:26 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-18 05:13:26 +0000 |
commit | 5e770cae7dee13d4f9509da67a89799a0675e441 (patch) | |
tree | 817b5acd87a3600d1674d5fff51908d33a45a3a9 /lib/Analysis/CFRefCount.cpp | |
parent | 12fc014c0407ed0cdc9e975b810db008d9f4992e (diff) |
Fix plurality debacle.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index 41754c95e7..5ff3ce5855 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -1372,7 +1372,7 @@ PathDiagnosticPiece* CFRefReport::VisitNode(ExplodedNode<ValueState>* N, os << "Reference count incremented."; if (CurrV.getCount()) - os << " Object has +" << CurrV.getCount() << " reference counts."; + os << " Object has +" << CurrV.getCount() << " reference count."; Msg = os.str().c_str(); |