From 5e770cae7dee13d4f9509da67a89799a0675e441 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 18 Apr 2008 05:13:26 +0000 Subject: [PATCH] Fix plurality debacle. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49894 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/CFRefCount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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* 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(); -- 2.40.0