[Static Analyzer] Fixed a typo in a diagnostic message.

llvm-svn: 247444
This commit is contained in:
Gabor Horvath 2015-09-11 18:41:50 +00:00
parent a2d1d699d8
commit 17dacc401c
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ const char *const ErrorMessages[] = {
"Nullable pointer is returned from a function that is expected to return a " "Nullable pointer is returned from a function that is expected to return a "
"non-null value", "non-null value",
"Nullable pointer is dereferenced", "Nullable pointer is dereferenced",
"Nullable pointer is passed to a calle that requires a non-null argument"}; "Nullable pointer is passed to a callee that requires a non-null argument"};
class NullabilityChecker class NullabilityChecker
: public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>, : public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>,