diff options
Diffstat (limited to 'src/lib/krb5/posix/syslog.c')
-rw-r--r-- | src/lib/krb5/posix/syslog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/krb5/posix/syslog.c b/src/lib/krb5/posix/syslog.c index e1318933ef..418e811d0c 100644 --- a/src/lib/krb5/posix/syslog.c +++ b/src/lib/krb5/posix/syslog.c @@ -1,3 +1,4 @@ +/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ #if defined(_WIN32) /* Windows doesn't have the concept of a system log, so just ** do nothing here. @@ -5,6 +6,6 @@ void syslog(int pri, const char *fmt, ...) { - return; + return; } #endif |