diff options
author | asmodai <asmodai@FreeBSD.org> | 2002-04-15 20:16:48 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2002-04-15 20:16:48 +0000 |
commit | d138e20525bbeb61c8337755853ff4825d6dec83 (patch) | |
tree | 18ae1b1b358225b58c33abd0dab73d9e25a969f8 | |
parent | 72a3bfdc8184286c7966e63679d4e0a9430c3757 (diff) | |
download | FreeBSD-src-d138e20525bbeb61c8337755853ff4825d6dec83.zip FreeBSD-src-d138e20525bbeb61c8337755853ff4825d6dec83.tar.gz |
Sync with UDF p4 tree: Properly initialize part of the mntopts.
Move to WARNS=1.
-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 32d9f61..3e33dfe 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 bc2dd16..32c2428 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); |