diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-01 20:33:05 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-01 20:33:05 +0000 |
commit | 63eeade25deaa8ca0b8a8a91871eb5af81544989 (patch) | |
tree | 74b1fe474489fbf54b5b86970132b1273b2432f9 /lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp | |
parent | 70f233017bd3091137dcfbc00f6b2baea56edba9 (diff) |
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
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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...]'"); } |