[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

llvm-svn: 264164

clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp

index 1459083..5126716 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;
   }