From: Argyrios Kyrtzidis Date: Tue, 1 Feb 2011 20:33:05 +0000 (+0000) Subject: Fix the message. Thanks to Thomas Clement for noticing. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63eeade25deaa8ca0b8a8a91871eb5af81544989;p=clang Fix the message. Thanks to Thomas Clement for noticing. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124680 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp b/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp index fb8ddb0792..ff1e5dde76 100644 --- a/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp @@ -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...]'"); }