mirror of https://github.com/pret/pokecrystal.git
Fix insecure fprintf
This commit is contained in:
parent
60f6430d05
commit
1f8bc7772b
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue