You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
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