]> granicus.if.org Git - clang/commitdiff
Fix bad grammar in static analyzer diagnostic. Reported by Robert Purves!
authorTed Kremenek <kremenek@apple.com>
Thu, 1 Oct 2009 17:31:50 +0000 (17:31 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 1 Oct 2009 17:31:50 +0000 (17:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83204 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFRefCount.cpp
test/Analysis/retain-release.m

index 75bd25cf5bcbdd92f8b38387f32bc53189830644..755819197e7e3c9a05eb348dd5a99ff441004741 100644 (file)
@@ -2054,8 +2054,8 @@ namespace {
     BadRelease(CFRefCount* tf) : CFRefBug(tf, "Bad release") {}
 
     const char* getDescription() const {
-      return "Incorrect decrement of the reference count of an "
-      "object is not owned at this point by the caller";
+      return "Incorrect decrement of the reference count of an object that is "
+             "not owned at this point by the caller";
     }
   };
 
index 397464ac6fced07348ea22d057d33efd98fbc6e5..5f4f20d327907f030b90531b48d68bcea8e37fde 100644 (file)
@@ -631,7 +631,7 @@ void rdar6704930(unsigned char *s, unsigned int length) {
 int rdar_6257780_Case1() {
   NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
   NSArray *array = [NSArray array];
-  [array release]; // expected-warning{{Incorrect decrement of the reference count of an object is not owned at this point by the caller}}
+  [array release]; // expected-warning{{Incorrect decrement of the reference count of an object that is not owned at this point by the caller}}
   [pool drain];
   return 0;
 }