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 | ca8892b4568b64b41be709f35ed52c297d9a1f1f (patch) | |
tree | dd34dfacf7cb3703bfe992bd946e8ca2ba8a9752 /clang/lib | |
parent | 9e48b0c4eda5f144b263e61f62574ff5dfaad14e (diff) | |
download | bcm5719-llvm-ca8892b4568b64b41be709f35ed52c297d9a1f1f.tar.gz bcm5719-llvm-ca8892b4568b64b41be709f35ed52c297d9a1f1f.zip |
Fix plurality debacle.
llvm-svn: 49894
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Analysis/CFRefCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CFRefCount.cpp b/clang/lib/Analysis/CFRefCount.cpp index 41754c95e75..5ff3ce5855b 100644 --- a/clang/lib/Analysis/CFRefCount.cpp +++ b/clang/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(); |