summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:59:27 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:59:27 +0000
commit399c0939a8c7a80eb642b4bb4a1fd816d03d71c3 (patch)
tree6b1ab2281187855696302f27f6387b7a8dbdf795 /usr.bin
parent5e33b35d132fff2569d47f54e341be90aa65b0ee (diff)
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/usbhidaction/usbhidaction.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/usbhidaction/usbhidaction.c b/usr.bin/usbhidaction/usbhidaction.c
index e2ae2473396..69d4e89b05d 100644
--- a/usr.bin/usbhidaction/usbhidaction.c
+++ b/usr.bin/usbhidaction/usbhidaction.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbhidaction.c,v 1.4 2004/06/04 00:47:32 deraadt Exp $ */
+/* $OpenBSD: usbhidaction.c,v 1.5 2004/09/14 22:59:26 deraadt Exp $ */
/* $NetBSD: usbhidaction.c,v 1.7 2002/01/18 14:38:59 augustss Exp $ */
/*
@@ -77,8 +77,9 @@ struct command *parse_conf(const char *, report_desc_t, int, int);
void docmd(struct command *, int, const char *, int, char **);
void freecommands(struct command *);
+/* ARGSUSED */
static void
-sighup(int sig)
+sighup(int signo)
{
reparse = 1;
}