[cfe-commits] r124680 - /cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
Argyrios Kyrtzidis
akyrtzi at gmail.com
Tue Feb 1 12:33:05 PST 2011
Author: akirtzidis
Date: Tue Feb 1 14:33:05 2011
New Revision: 124680
URL: http://llvm.org/viewvc/llvm-project?rev=124680&view=rev
Log:
Fix the message. Thanks to Thomas Clement for noticing.
Modified:
cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp?rev=124680&r1=124679&r2=124680&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp Tue Feb 1 14:33:05 2011
@@ -221,7 +221,7 @@
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...]'");
}
More information about the cfe-commits
mailing list