summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Horvath <xazax.hun@gmail.com>2015-09-11 18:41:50 +0000
committerGabor Horvath <xazax.hun@gmail.com>2015-09-11 18:41:50 +0000
commit17dacc401c70ca5b316b91c98387b2bc06a4902c (patch)
tree2b4f4b6621f8f2c45af674bbfac3eb5fe309666a
parenta2d1d699d83d2c6fef7e06b59f200304694d1a74 (diff)
downloadbcm5719-llvm-17dacc401c70ca5b316b91c98387b2bc06a4902c.tar.gz
bcm5719-llvm-17dacc401c70ca5b316b91c98387b2bc06a4902c.zip
[Static Analyzer] Fixed a typo in a diagnostic message.
llvm-svn: 247444
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
index a46d23d9668..c44a5e66204 100644
--- a/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
@@ -99,7 +99,7 @@ const char *const ErrorMessages[] = {
"Nullable pointer is returned from a function that is expected to return a "
"non-null value",
"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
: public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>,
OpenPOWER on IntegriCloud