Fix insecure fprintf

This commit is contained in:
yenatch 2017-06-24 19:32:35 -04:00
parent 60f6430d05
commit 1f8bc7772b

View File

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