Files
Lucas De Marchi b11405edf7 Remove reason from suggested fixes
If there's a reason why a change is not a 1:1, do not print it in the
list of suggestions.
2011-01-29 10:58:17 -02:00

19 lines
205 B
C

int f(int type)
{
return type;
}
int main(void)
{
int fd, clas;
/* tis code does nothing */
f(1, 2, 3);
fd = opem("/tmp/a", O_RDONLY);
// buring your cpu
return f(clas);
}