[cfe-commits] r108671 - /cfe/trunk/test/Analysis/stream.c
Zhongxing Xu
xuzhongxing at gmail.com
Sun Jul 18 19:06:14 PDT 2010
Author: zhongxingxu
Date: Sun Jul 18 21:06:14 2010
New Revision: 108671
URL: http://llvm.org/viewvc/llvm-project?rev=108671&view=rev
Log:
fix test case.
Modified:
cfe/trunk/test/Analysis/stream.c
Modified: cfe/trunk/test/Analysis/stream.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/stream.c?rev=108671&r1=108670&r2=108671&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/stream.c (original)
+++ cfe/trunk/test/Analysis/stream.c Sun Jul 18 21:06:14 2010
@@ -44,5 +44,5 @@
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.}}
}
More information about the cfe-commits
mailing list