Date: Sat, 27 Feb 2010 10:14:59 +0000 (UTC) From: Ulrich Spoerlein <uqs@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r204403 - head/sbin/mount_hpfs Message-ID: <201002271014.o1RAExV3029447@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: uqs Date: Sat Feb 27 10:14:59 2010 New Revision: 204403 URL: http://svn.freebsd.org/changeset/base/204403 Log: mount_hpfs(8): make WARNS=6 clean PR: bin/139995 Approved by: ed (co-mentor) Modified: head/sbin/mount_hpfs/Makefile head/sbin/mount_hpfs/mount_hpfs.c Modified: head/sbin/mount_hpfs/Makefile ============================================================================== --- head/sbin/mount_hpfs/Makefile Sat Feb 27 07:12:25 2010 (r204402) +++ head/sbin/mount_hpfs/Makefile Sat Feb 27 10:14:59 2010 (r204403) @@ -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} Modified: head/sbin/mount_hpfs/mount_hpfs.c ============================================================================== --- head/sbin/mount_hpfs/mount_hpfs.c Sat Feb 27 07:12:25 2010 (r204402) +++ head/sbin/mount_hpfs/mount_hpfs.c Sat Feb 27 10:14:59 2010 (r204403) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002271014.o1RAExV3029447>