diff options
-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); |