Fix insecure fprintf

This commit is contained in:
yenatch 2017-06-24 19:32:35 -04:00
parent 60f6430d05
commit 1f8bc7772b
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ static void usage(void) {
} }
static void error(char *message) { static void error(char *message) {
fprintf(stderr, message); fputs(message, stderr);
fprintf(stderr, "\n"); fputs("\n", stderr);
} }
struct Options { struct Options {