diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-22 22:38:26 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-22 22:38:26 +0100 |
commit | c7bb19c55c7a902e25bdd33b0d49a2ddcf62e07a (patch) | |
tree | b3a75ef2719bc2f334041460fd21fbdf86a23a82 /nslcd/log.h | |
parent | d336cd6b429f8ce40c58ea287f79bbc7c23d0966 (diff) |
update C coding style to a more commonly used style
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1873 ef36b2f9-881f-0410-afb5-c4e39611909c
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 */ |