diff options
-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.}} } |