Sync with UDF p4 tree: Properly initialize part of the mntopts.

Move to WARNS=1.
This commit is contained in:
Jeroen Ruigrok van der Werven 2002-04-15 20:16:48 +00:00
parent c2d6947d14
commit 7d4eb6135b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94796
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -63,7 +63,7 @@
struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_UPDATE,
{ NULL }
{ NULL, 0, 0, 0 }
};
void usage(void);