Fix plurality debacle.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49894 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 41754c9..5ff3ce5 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -1372,7 +1372,7 @@
         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();