canerrsim: show_help_and_exit(): use "%s" to print string

Marc Kleine-Budde 2024-05-23 13:38:03 +02:00
parent 9f73e9c373
commit e67e3c675d
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ void show_help_and_exit()
void err_exit(const char *msg)
{
printf(msg);
printf("%s", msg);
exit(EXIT_FAILURE);
}