diff options
author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-15 20:16:48 +0000 |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2002-04-15 20:16:48 +0000 |
commit | 7d4eb6135b73ca52d70d3b5b34490f5f284c2d05 (patch) | |
tree | 18ae1b1b358225b58c33abd0dab73d9e25a969f8 /sbin/mount_udf | |
parent | c2d6947d145d27177ec124f74b1e58fb237c6e0b (diff) | |
download | src-test2-7d4eb6135b73ca52d70d3b5b34490f5f284c2d05.tar.gz src-test2-7d4eb6135b73ca52d70d3b5b34490f5f284c2d05.zip |
Notes
Diffstat (limited to 'sbin/mount_udf')
-rw-r--r-- | sbin/mount_udf/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_udf/mount_udf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_udf/Makefile b/sbin/mount_udf/Makefile index 32d9f6151a46..3e33dfea21b4 100644 --- a/sbin/mount_udf/Makefile +++ b/sbin/mount_udf/Makefile @@ -7,6 +7,6 @@ MAN= mount_udf.8 MOUNT= ${.CURDIR}/../mount CFLAGS+= -I${MOUNT} -I${.CURDIR}/../../sys -Wall .PATH: ${MOUNT} -WARNS= 0 +WARNS= 1 .include <bsd.prog.mk> diff --git a/sbin/mount_udf/mount_udf.c b/sbin/mount_udf/mount_udf.c index bc2dd16c2202..32c242872eb1 100644 --- a/sbin/mount_udf/mount_udf.c +++ b/sbin/mount_udf/mount_udf.c @@ -63,7 +63,7 @@ struct mntopt mopts[] = { MOPT_STDOPTS, MOPT_UPDATE, - { NULL } + { NULL, 0, 0, 0 } }; void usage(void); |