From c6a36ff1d5769feb95841d934ae85159e23b9def Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Mon, 19 Jul 2010 02:06:14 +0000 Subject: [PATCH] fix test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108671 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.}} } -- 2.40.0