diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-07-18 21:18:49 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-07-18 21:18:49 +0000 |
commit | 2ab79d7b84981de56445ae12856b4564d77dcaaa (patch) | |
tree | 36467d1e990937e22e898e4abacfd3e76836afbf /usr.sbin/iscsid | |
parent | 3b3968fb90c9da767510f76f87c8d9202ace6bb6 (diff) |
add format attributes to log functions
ok claudio@
Diffstat (limited to 'usr.sbin/iscsid')
-rw-r--r-- | usr.sbin/iscsid/log.h | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/usr.sbin/iscsid/log.h b/usr.sbin/iscsid/log.h index 01bbeb3b092..ef3bd1634e7 100644 --- a/usr.sbin/iscsid/log.h +++ b/usr.sbin/iscsid/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.2 2011/04/27 18:59:01 claudio Exp $ */ +/* $OpenBSD: log.h,v 1.3 2016/07/18 21:18:48 benno Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -23,13 +23,21 @@ void log_init(int); void log_verbose(int); -void vlog(int, const char *, va_list); -void log_warn(const char *, ...); -void log_warnx(const char *, ...); -void log_info(const char *, ...); -void log_debug(const char *, ...); -void fatal(const char *) __dead; -void fatalx(const char *) __dead; +void vlog(int, const char *, va_list) + __attribute__((__format__ (printf, 2, 0))); +void log_warn(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void log_warnx(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void log_info(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void log_debug(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void fatal(const char *) __dead + __attribute__((__format__ (printf, 1, 0))); +void fatalx(const char *) __dead + __attribute__((__format__ (printf, 1, 0))); + void log_hexdump(void *, size_t); void log_pdu(struct pdu *, int); |