diff options
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp | 2 |
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>, |