Fix lint unrelated "set but not used" warning, to unbreak test.

This commit is contained in:
njoly 2011-10-05 21:30:50 +00:00
parent 39878e9e30
commit 07e6e433cf

View File

@ -1,5 +1,5 @@
void sample(void)
{
int i = 0; i += 1;
int j = 0; i += 1;
int j = 0; j += 1;
}