diff options
| author | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:03:14 +0200 |
|---|---|---|
| committer | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:04:07 +0200 |
| commit | d62a17aedeb0eebdba98238874bb13d62c48dbf9 (patch) | |
| tree | 3b319b1d61c8b85b4d1f06adf8b844bb8a9b5107 /lib/log_int.h | |
| parent | 888ac268a0077fc9ebd1218cec6ae472af0bfc40 (diff) | |
*: reindentreindent-master-after
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'`
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/log_int.h')
| -rw-r--r-- | lib/log_int.h | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/lib/log_int.h b/lib/log_int.h index 7c93381cbc..56823fb971 100644 --- a/lib/log_int.h +++ b/lib/log_int.h @@ -24,21 +24,20 @@ #include "log.h" -struct zlog -{ - const char *ident; /* daemon name (first arg to openlog) */ - const char *protoname; - u_short instance; - int maxlvl[ZLOG_NUM_DESTS]; /* maximum priority to send to associated - logging destination */ - int default_lvl; /* maxlvl to use if none is specified */ - FILE *fp; - char *filename; - int facility; /* as per syslog facility */ - int record_priority; /* should messages logged through stdio include the - priority of the message? */ - int syslog_options; /* 2nd arg to openlog */ - int timestamp_precision; /* # of digits of subsecond precision */ +struct zlog { + const char *ident; /* daemon name (first arg to openlog) */ + const char *protoname; + u_short instance; + int maxlvl[ZLOG_NUM_DESTS]; /* maximum priority to send to associated + logging destination */ + int default_lvl; /* maxlvl to use if none is specified */ + FILE *fp; + char *filename; + int facility; /* as per syslog facility */ + int record_priority; /* should messages logged through stdio include the + priority of the message? */ + int syslog_options; /* 2nd arg to openlog */ + int timestamp_precision; /* # of digits of subsecond precision */ }; /* Default logging strucutre. */ @@ -47,10 +46,7 @@ extern struct zlog *zlog_default; extern const char *zlog_priority[]; /* Generic function for zlog. */ -extern void vzlog (int priority, const char *format, va_list args); -extern void zlog (int priority, const char *format, ...) - PRINTF_ATTRIBUTE(2, 3); +extern void vzlog(int priority, const char *format, va_list args); +extern void zlog(int priority, const char *format, ...) PRINTF_ATTRIBUTE(2, 3); #endif /* _ZEBRA_LOG_PRIVATE_H */ - - |
