summaryrefslogtreecommitdiff
path: root/usr.sbin/ripd
diff options
context:
space:
mode:
authorSebastian Benoit <benno@cvs.openbsd.org>2016-07-19 07:58:52 +0000
committerSebastian Benoit <benno@cvs.openbsd.org>2016-07-19 07:58:52 +0000
commit3f4cc2a06bcb20756abf8575ff93844d7284cb43 (patch)
tree827eada9d8b17c70a4f0a87cc0bd70df6ea4ce0d /usr.sbin/ripd
parent14ee33c883ce8c8d898fa20930100cd54743efed (diff)
remove bogus attributes on fatal* spotted by guenther@
Diffstat (limited to 'usr.sbin/ripd')
-rw-r--r--usr.sbin/ripd/log.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ripd/log.h b/usr.sbin/ripd/log.h
index 98707c1fc8d..9d64448f0b3 100644
--- a/usr.sbin/ripd/log.h
+++ b/usr.sbin/ripd/log.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.h,v 1.4 2016/07/18 21:20:31 benno Exp $ */
+/* $OpenBSD: log.h,v 1.5 2016/07/19 07:58:51 benno Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -35,10 +35,8 @@ 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 fatal(const char *) __dead;
+void fatalx(const char *) __dead;
const char *if_type_name(enum iface_type);
const char *nbr_state_name(int);