Fix insecure fprintf
This commit is contained in:
@@ -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 {
|
||||||
|
Reference in New Issue
Block a user