diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-19 02:06:14 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-19 02:06:14 +0000 |
commit | c6a36ff1d5769feb95841d934ae85159e23b9def (patch) | |
tree | f9106db24ebbb8e1352adcc4b5c7f314978eaa49 | |
parent | bc46c6b9c5251020d6e2e62005861872b6a3e03b (diff) |
fix test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108671 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/stream.c b/test/Analysis/stream.c index 953fc4dadc..bc1b58ee04 100644 --- a/test/Analysis/stream.c +++ b/test/Analysis/stream.c @@ -44,5 +44,5 @@ void f5(void) { void f6(void) { FILE *p = fopen("foo", "r"); fclose(p); - fclose(p); // expected-warning {{Try to close a file Descriptor already closed. Cause Undefined Behaviour.}} + fclose(p); // expected-warning {{Try to close a file Descriptor already closed. Cause undefined behaviour.}} } |