Module Name: src
Committed By: njoly
Date: Wed Oct 5 21:30:50 UTC 2011
Modified Files:
src/tests/util/xlint/lint1: d_c99_decls_after_stmt.c
Log Message:
Fix lint unrelated "set but not used" warning, to unbreak test.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c
diff -u src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c:1.1 src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c:1.2
--- src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c:1.1 Tue Oct 4 16:24:27 2011
+++ src/tests/util/xlint/lint1/d_c99_decls_after_stmt.c Wed Oct 5 21:30:50 2011
@@ -1,5 +1,5 @@
void sample(void)
{
int i = 0; i += 1;
- int j = 0; i += 1;
+ int j = 0; j += 1;
}