> @@ -1234,8 +1234,10 @@ dump(char c) { > static int col; > > fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.'); > - if(++col % 10 == 0) > + if(++col == 10) { > fprintf(stderr, "\n"); > + col = 0; > + } > }
dump is not used in any place. It is dead code, so I think the solution is to remove the function. Regards, -- Roberto E. Vargas Caballero