Tweaked count helper.

- Legacy-Id: 13672
This commit is contained in:
Henrik Levkowetz 2017-06-18 17:21:14 +00:00
parent be80e68b47
commit ad57b107f2

View file

@ -17,7 +17,7 @@ int main( void )
fputc(c, stdout);
fflush(stdout);
if (count && count % 76 == 0) {
fprintf(stderr, "%4d", count);
fprintf(stderr, "%4d\n", count);
fflush(stderr);
}
c = fgetc(stdin);