From c1b4534e4230a3e1545d10ddf3438aa64db9cedd Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Tue, 1 Feb 2011 20:33:05 +0000 Subject: [PATCH] Fix the message. Thanks to Thomas Clement for noticing. llvm-svn: 124680 --- clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp index fb8ddb0792bd..ff1e5dde76a2 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp +++ b/clang/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...]'"); }