diff options
Diffstat (limited to 'nslcd/log.h')
-rw-r--r-- | nslcd/log.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nslcd/log.h b/nslcd/log.h index 27003a6..c88613b 100644 --- a/nslcd/log.h +++ b/nslcd/log.h @@ -1,7 +1,7 @@ /* log.h - definitions of logging funtions - Copyright (C) 2002, 2003, 2007, 2008, 2010, 2011 Arthur de Jong + Copyright (C) 2002, 2003, 2007, 2008, 2010, 2011, 2012 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -44,10 +44,10 @@ void log_clearsession(void); /* indicate that a request identifier should be included in the output from this point on, until log_newsession() is called */ void log_setrequest(const char *format, ...) - LIKE_PRINTF(1,2); + LIKE_PRINTF(1, 2); /* log the given message using the configured logging method */ -void log_log(int pri,const char *format, ...) - LIKE_PRINTF(2,3); +void log_log(int pri, const char *format, ...) + LIKE_PRINTF(2, 3); #endif /* not NSLCD__LOG_H */ |