diff options
author | alfred <alfred@FreeBSD.org> | 2002-07-11 21:18:55 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-07-11 21:18:55 +0000 |
commit | cef3a16df0278b04238363785b0c9f0db8216a33 (patch) | |
tree | f8acc0d80abf6a5b960d97fdf86aca21aa059eea /usr.sbin/edquota | |
parent | 9350b2dc7e39dbff50aa91cd02543375b763dfe2 (diff) | |
download | FreeBSD-src-cef3a16df0278b04238363785b0c9f0db8216a33.zip FreeBSD-src-cef3a16df0278b04238363785b0c9f0db8216a33.tar.gz |
WARNS=4
Diffstat (limited to 'usr.sbin/edquota')
-rw-r--r-- | usr.sbin/edquota/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/edquota/edquota.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/edquota/Makefile b/usr.sbin/edquota/Makefile index 0dcede4..1bace7b 100644 --- a/usr.sbin/edquota/Makefile +++ b/usr.sbin/edquota/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PROG= edquota -WARNS?= 2 +WARNS?= 4 MAN= edquota.8 .include <bsd.prog.mk> diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 0f45116..e7be4b7 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -99,9 +99,7 @@ int writetimes(struct quotause *, int, int); int writeprivs(struct quotause *, int, char *, int); int -main(argc, argv) - register char **argv; - int argc; +main(int argc, char **argv) { register struct quotause *qup, *protoprivs, *curprivs; register long id, protoid; |