Created
October 24, 2012 14:17
-
-
Save jonpryor/3946309 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int | |
Mono_Posix_Syscall_syslog (int priority, const char* message) | |
{ | |
#ifdef __GCC__ | |
#pragma GCC diagnostic push | |
#pragma GCC diagnostic ignored "-Werror=format-security" | |
#endif | |
syslog (priority, message); | |
#ifdef __GCC__ | |
#pragma GCC diagnostic pop | |
#endif | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment