diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index db33bc0..15d1eae 100644 --- a/src/common.c +++ b/src/common.c @@ -25,7 +25,7 @@ int catfile(char* path) { return 2; while((c = fgetc(fd)) != EOF) - printf("%c", c); + putchar(c); fclose(fd); return 0; |