commit | 0d9c17a3207c81b021b5813d14cafecb751af625 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Apr 18 05:13:26 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Apr 18 05:13:26 2008 +0000 |
tree | 817b5acd87a3600d1674d5fff51908d33a45a3a9 | |
parent | 61de3a3297c3ba5f177962a4b19159073ccde28f [diff] [blame] |
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();