]> granicus.if.org Git - clang/commitdiff
Fix the message. Thanks to Thomas Clement for noticing.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Tue, 1 Feb 2011 20:33:05 +0000 (20:33 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Tue, 1 Feb 2011 20:33:05 +0000 (20:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124680 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp

index fb8ddb0792bd77c720ee78183e771a2f38362251..ff1e5dde76a2398124d591c6345f19967bc606eb 100644 (file)
@@ -221,7 +221,7 @@ void ObjCSelfInitChecker::PreVisitReturnStmt(CheckerContext &C,
     return;
 
   checkForInvalidSelf(S->getRetValue(), C,
-    "Returning 'self' while it is not set it to the result of "
+    "Returning 'self' while it is not set to the result of "
                                                  "'[(super or self) init...]'");
 }