diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ void run(FILE *fp, char *filename, bool tty) { free(f.lines[i].buf); } } else { - printf("%s", f.buf); + fwrite(f.buf, 1, f.buflen, stdout); } free(f.buf); |