summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-04-16 21:51:03 +0000
committerAnna Zaks <ganna@apple.com>2012-04-16 21:51:03 +0000
commit5a389f1da1d4c8e2b2b7934e5855882347e6f2f9 (patch)
treef4893a2db40251d433ebace8aeadf9d23a9b7a62
parent93a49944e0e68e32bc22d45d44ee136b34beffb3 (diff)
[analyzer] Fixup for a test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154864 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/redefined_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/redefined_system.c b/test/Analysis/redefined_system.c
index 3f585c4ef6..3c08b5e896 100644
--- a/test/Analysis/redefined_system.c
+++ b/test/Analysis/redefined_system.c
@@ -12,6 +12,6 @@ char strdup();
char atoi();
int foo () {
- return memmove() + malloc() + system + stdin() + memccpy() + free() + strdup() + atoi();
+ return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
}