Skip to content

Commit

Permalink
Fix invocation to syslog
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Jul 25, 2011
1 parent 70ed30c commit 16a40cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/syslog.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Mono_Posix_Syscall_closelog (void)
int
Mono_Posix_Syscall_syslog (int priority, const char* message)
{
syslog (priority, message);
syslog (priority, "%s", message);
return 0;
}

Expand Down

0 comments on commit 16a40cb

Please sign in to comment.