diff --git a/clang/test/Analysis/null-deref-ps.c b/clang/test/Analysis/null-deref-ps.c index a6819cc48b04..fb6b2089f078 100644 --- a/clang/test/Analysis/null-deref-ps.c +++ b/clang/test/Analysis/null-deref-ps.c @@ -96,7 +96,7 @@ int f9(int len) { int *p = 0; for (int i = 0; i < len; ++i) - p = foo(i); + p = qux(i); return *p++; // no-warning }