From ca8892b4568b64b41be709f35ed52c297d9a1f1f Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 18 Apr 2008 05:13:26 +0000 Subject: [PATCH] Fix plurality debacle. llvm-svn: 49894 --- clang/lib/Analysis/CFRefCount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Analysis/CFRefCount.cpp b/clang/lib/Analysis/CFRefCount.cpp index 41754c95e75f..5ff3ce5855b1 100644 --- a/clang/lib/Analysis/CFRefCount.cpp +++ b/clang/lib/Analysis/CFRefCount.cpp @@ -1372,7 +1372,7 @@ PathDiagnosticPiece* CFRefReport::VisitNode(ExplodedNode* 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();