summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authoruqs <uqs@FreeBSD.org>2010-02-27 10:14:59 +0000
committeruqs <uqs@FreeBSD.org>2010-02-27 10:14:59 +0000
commit60c474d1ca77c8dde69406681b66aba82bf618b7 (patch)
treefbbf20570129906479ae54fab34b9921a8abff0f /sbin
parent03d2b3884ad57edb16b4ab6773c1ea6269efa2e1 (diff)
downloadFreeBSD-src-60c474d1ca77c8dde69406681b66aba82bf618b7.zip
FreeBSD-src-60c474d1ca77c8dde69406681b66aba82bf618b7.tar.gz
mount_hpfs(8): make WARNS=6 clean
PR: bin/139995 Approved by: ed (co-mentor)
Diffstat (limited to 'sbin')
-rw-r--r--sbin/mount_hpfs/Makefile3
-rw-r--r--sbin/mount_hpfs/mount_hpfs.c19
2 files changed, 7 insertions, 15 deletions
diff --git a/sbin/mount_hpfs/Makefile b/sbin/mount_hpfs/Makefile
index 0843774..9e65b8e 100644
--- a/sbin/mount_hpfs/Makefile
+++ b/sbin/mount_hpfs/Makefile
@@ -7,8 +7,7 @@ SRCS= mount_hpfs.c getmntopts.c
MAN= mount_hpfs.8
MOUNT= ${.CURDIR}/../mount
-CFLAGS+=-I${MOUNT} -DHPFS
-WARNS?= 0
+CFLAGS+= -I${MOUNT} -DHPFS
.PATH: ${MOUNT}
diff --git a/sbin/mount_hpfs/mount_hpfs.c b/sbin/mount_hpfs/mount_hpfs.c
index a9a87e2..0106377 100644
--- a/sbin/mount_hpfs/mount_hpfs.c
+++ b/sbin/mount_hpfs/mount_hpfs.c
@@ -60,9 +60,7 @@ static void usage(void) __dead2;
static void load_u2wtable(struct hpfs_args *, char *);
int
-main(argc, argv)
- int argc;
- char **argv;
+main(int argc, char *argv[])
{
struct hpfs_args args;
struct stat sb;
@@ -150,8 +148,7 @@ main(argc, argv)
}
gid_t
-a_gid(s)
- char *s;
+a_gid(char *s)
{
struct group *gr;
char *gname;
@@ -170,8 +167,7 @@ a_gid(s)
}
uid_t
-a_uid(s)
- char *s;
+a_uid(char *s)
{
struct passwd *pw;
char *uname;
@@ -190,8 +186,7 @@ a_uid(s)
}
mode_t
-a_mask(s)
- char *s;
+a_mask(char *s)
{
int done, rv=0;
char *ep;
@@ -207,16 +202,14 @@ a_mask(s)
}
void
-usage()
+usage(void)
{
fprintf(stderr, "usage: mount_hpfs [-u user] [-g group] [-m mask] bdev dir\n");
exit(EX_USAGE);
}
void
-load_u2wtable (pargs, name)
- struct hpfs_args *pargs;
- char *name;
+load_u2wtable (struct hpfs_args *pargs, char *name)
{
FILE *f;
int i, code;
OpenPOWER on IntegriCloud