diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2020-04-11 15:23:24 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2020-04-11 15:23:24 +0000 |
commit | 310cd544caa67a28e3ae17016fbd0eab536e6abe (patch) | |
tree | d436156a673ce3a814ea37ce70ea96b57fa24ba0 /usr.sbin | |
parent | 2155d6e5608539cf16ef19449b35a9958c417f65 (diff) |
remove a __unused attribute, it's obvious and complicates things.
ok claudio@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/output.c b/usr.sbin/rpki-client/output.c index 99f127bb2a7..3b521ca108d 100644 --- a/usr.sbin/rpki-client/output.c +++ b/usr.sbin/rpki-client/output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: output.c,v 1.9 2020/03/10 14:22:26 jca Exp $ */ +/* $OpenBSD: output.c,v 1.10 2020/04/11 15:23:23 benno Exp $ */ /* * Copyright (c) 2019 Theo de Raadt <deraadt@openbsd.org> * @@ -139,7 +139,7 @@ output_cleantmp(void) * Signal handler that clears the temporary files. */ static void -sig_handler(int sig __unused) +sig_handler(int sig) { output_cleantmp(); _exit(2); |