Fix plurality debacle.

llvm-svn: 49894
This commit is contained in:
Ted Kremenek 2008-04-18 05:13:26 +00:00
parent 9e48b0c4ed
commit ca8892b456
1 changed files with 1 additions and 1 deletions

View 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();