]> granicus.if.org Git - clang/commitdiff
[analyzer] Fix typo s/initalize/initialize/
authorChih-Hung Hsieh <chh@google.com>
Wed, 23 Mar 2016 16:14:12 +0000 (16:14 +0000)
committerChih-Hung Hsieh <chh@google.com>
Wed, 23 Mar 2016 16:14:12 +0000 (16:14 +0000)
Differential Revision: http://reviews.llvm.org/D18363

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@264164 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp

index 14590837699683c31d1547f742748430c8fb4b22..5126716fcded193ad9c291c39a63957a88f6681e 100644 (file)
@@ -313,7 +313,7 @@ void CallAndMessageChecker::checkPreStmt(const CallExpr *CE,
   if (L.isUndef()) {
     if (!BT_call_undef)
       BT_call_undef.reset(new BuiltinBug(
-          this, "Called function pointer is an uninitalized pointer value"));
+          this, "Called function pointer is an uninitialized pointer value"));
     emitBadCall(BT_call_undef.get(), C, Callee);
     return;
   }