From: Ted Kremenek Date: Thu, 1 Oct 2009 17:31:50 +0000 (+0000) Subject: Fix bad grammar in static analyzer diagnostic. Reported by Robert Purves! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb206fdd9d4465fee4336e6a12d7e936add17389;p=clang Fix bad grammar in static analyzer diagnostic. Reported by Robert Purves! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83204 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index 75bd25cf5b..755819197e 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -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"; } }; diff --git a/test/Analysis/retain-release.m b/test/Analysis/retain-release.m index 397464ac6f..5f4f20d327 100644 --- a/test/Analysis/retain-release.m +++ b/test/Analysis/retain-release.m @@ -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; }