diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-29 07:59:57 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-29 07:59:57 +0000 |
commit | 89c5289c522dcbfe7a37ea4c076f10888e6ed771 (patch) | |
tree | bc599c30c2e55c8cc7fe0138bb32303b290c2347 /bin/rcp | |
parent | 30b02a2de2027fe4ce3a9e24a2c5c782f243897c (diff) | |
download | FreeBSD-src-89c5289c522dcbfe7a37ea4c076f10888e6ed771.zip FreeBSD-src-89c5289c522dcbfe7a37ea4c076f10888e6ed771.tar.gz |
Mark the signo as __unused in a lazy signal handler.
Diffstat (limited to 'bin/rcp')
-rw-r--r-- | bin/rcp/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rcp/util.c b/bin/rcp/util.c index 2e63c05..28e188c 100644 --- a/bin/rcp/util.c +++ b/bin/rcp/util.c @@ -155,7 +155,7 @@ allocbuf(BUF *bp, int fd, int blksize) } void -lostconn(int signo) +lostconn(int signo __unused) { if (!iamremote) warnx("lost connection"); |