diff options
author | phk <phk@FreeBSD.org> | 2002-01-25 20:45:30 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-01-25 20:45:30 +0000 |
commit | cacafa9eb5b4d9a1ecbdbfdec9693af227cba76b (patch) | |
tree | 53c7fb656ddba508407cec565269a4188ce41630 /sbin/quotacheck/Makefile | |
parent | f8db94a76fc7376e2344770cbe7efcd2731e4aeb (diff) | |
download | FreeBSD-src-cacafa9eb5b4d9a1ecbdbfdec9693af227cba76b.zip FreeBSD-src-cacafa9eb5b4d9a1ecbdbfdec9693af227cba76b.tar.gz |
Fix some function prototypes.
Cure the "lets put everything in registers" ailment.
Set WARNS=2
Fix two problems where casting messed up large quotafiles.
PR: 34108
Submitted by: Maxim Katargin <kmv@asplinux.ru>
MFC after: 3 weeks
Diffstat (limited to 'sbin/quotacheck/Makefile')
-rw-r--r-- | sbin/quotacheck/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/quotacheck/Makefile b/sbin/quotacheck/Makefile index 3b04565..d909e1a 100644 --- a/sbin/quotacheck/Makefile +++ b/sbin/quotacheck/Makefile @@ -3,7 +3,7 @@ PROG= quotacheck SRCS= quotacheck.c preen.c utilities.c -WARNS= 0 +WARNS= 2 MAN= quotacheck.8 .PATH: ${.CURDIR}/../fsck_ffs |