]> granicus.if.org Git - clang/commitdiff
Fix plurality debacle.
authorTed Kremenek <kremenek@apple.com>
Fri, 18 Apr 2008 05:13:26 +0000 (05:13 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 18 Apr 2008 05:13:26 +0000 (05:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49894 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFRefCount.cpp

index 41754c95e75fdb59ebe78f4cddc02c21fd6356ef..5ff3ce5855b1ca6a1acb11678e3215867d9ec269 100644 (file)
@@ -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();