diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-29 03:19:25 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-29 03:19:25 +0000 |
commit | adbf6d583acd74a8586e5065a0f5d14349740236 (patch) | |
tree | 1bf8711c8828fd9537bc043d741e4872a806cf87 /usr.bin/wall | |
parent | ea6506d2a5dcf5f9c587c29c480dc58003bd867c (diff) |
Delete the final, inscrutable NOSTRICT and VARARGS lint comments
ok millert@
Diffstat (limited to 'usr.bin/wall')
-rw-r--r-- | usr.bin/wall/wall.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/wall/wall.c b/usr.bin/wall/wall.c index e2e4bb8b0dd..f367cbc7072 100644 --- a/usr.bin/wall/wall.c +++ b/usr.bin/wall/wall.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wall.c,v 1.27 2015/08/20 22:32:42 deraadt Exp $ */ +/* $OpenBSD: wall.c,v 1.28 2015/09/29 03:19:24 guenther Exp $ */ /* $NetBSD: wall.c,v 1.6 1994/11/17 07:17:58 jtc Exp $ */ /* @@ -109,7 +109,6 @@ main(int argc, char **argv) err(1, "cannot read %s", _PATH_UTMP); iov.iov_base = mbuf; iov.iov_len = mbufsize; - /* NOSTRICT */ while (fread(&utmp, sizeof(utmp), 1, fp) == 1) { if (!utmp.ut_name[0]) continue; |