diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 23:53:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 23:53:23 +0000 |
commit | 13737e747342bb42ce06447ef7dd3b7cd9aaa9aa (patch) | |
tree | fabcdb375b66792fb56553b0f8bf41595f6d2090 /usr.bin/nfsstat/nfsstat.c | |
parent | 7ab4c51e4e6792d7d1b8e582e1bc68d4fe8cd525 (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.bin/nfsstat/nfsstat.c')
-rw-r--r-- | usr.bin/nfsstat/nfsstat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/nfsstat/nfsstat.c b/usr.bin/nfsstat/nfsstat.c index c2be4defbfa..407519643a4 100644 --- a/usr.bin/nfsstat/nfsstat.c +++ b/usr.bin/nfsstat/nfsstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsstat.c,v 1.23 2004/05/09 03:28:11 deraadt Exp $ */ +/* $OpenBSD: nfsstat.c,v 1.24 2004/09/14 23:53:22 deraadt Exp $ */ /* $NetBSD: nfsstat.c,v 1.7 1996/03/03 17:21:30 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = static char sccsid[] = "from: @(#)nfsstat.c 8.1 (Berkeley) 6/6/93"; static char *rcsid = "$NetBSD: nfsstat.c,v 1.7 1996/03/03 17:21:30 thorpej Exp $"; #else -static char *rcsid = "$OpenBSD: nfsstat.c,v 1.23 2004/05/09 03:28:11 deraadt Exp $"; +static char *rcsid = "$OpenBSD: nfsstat.c,v 1.24 2004/09/14 23:53:22 deraadt Exp $"; #endif #endif /* not lint */ @@ -426,6 +426,7 @@ printhdr(void) * Called if an interval expires before sidewaysintpr has completed a loop. * Sets a flag to not wait for the alarm. */ +/* ARGSUSED */ void catchalarm(int signo) { |