From 5151bc9bd43d6c42168ec1f54aadca32740da6f7 Mon Sep 17 00:00:00 2001 From: Argiris Kirtzidis Date: Tue, 1 Feb 2011 20:33:05 +0000 Subject: [PATCH] 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 --- lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp b/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp index fb8ddb079..ff1e5dde7 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...]'"); } -- 2.11.4.GIT