Fix copy-paste error in test case.

llvm-svn: 56261
This commit is contained in:
Ted Kremenek 2008-09-16 23:25:28 +00:00
parent 8782716c4a
commit 025f83534c
1 changed files with 1 additions and 1 deletions

View File

@ -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
}