1
0
mirror of https://github.com/TASVideos/desmume synced 2024-07-08 20:06:04 +00:00

placate -Werror=format-security (probably) (re: #768)

This commit is contained in:
zeromus 2024-02-01 04:26:27 -05:00
parent f2cfd23ef2
commit 6508c2b115

View File

@ -397,7 +397,7 @@ bool CommandLine::parse(int argc,char **argv)
if(opt_help)
{
printf(help_string);
printf("%s",help_string);
exit(1);
}
@ -571,7 +571,7 @@ bool CommandLine::validate()
void CommandLine::errorHelp(const char* binName)
{
printerror(help_string);
printerror("%s",help_string);
}
void CommandLine::process_movieCommands()