Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Commit

Permalink
Fix compiler warning as suggested by @sumanar
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea De Pasquale committed Apr 6, 2016
1 parent 4ad0557 commit f881f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fw1-loggrabber.c
Original file line number Diff line number Diff line change
Expand Up @@ -4885,7 +4885,7 @@ submit_syslog (char *message)
{
fprintf (stderr, "DEBUG: Submit message to Syslog.\n");
}
syslog (LOG_NOTICE, message);
syslog (LOG_NOTICE, "%s", message);
return;
}

Expand Down

0 comments on commit f881f73

Please sign in to comment.