aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_ext2fs
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2005-06-10 09:51:43 +0000
committerXin LI <delphij@FreeBSD.org>2005-06-10 09:51:43 +0000
commit46b7a14ba40ee64e15ab2022897d62484b4cedf6 (patch)
tree0e6a4ab8b8aa5578febfa41f0a076ce9ae4cf5a8 /sbin/mount_ext2fs
parent6dded714b5f8729cf365ae14fb6c3a7dd1a30422 (diff)
downloadsrc-46b7a14ba40ee64e15ab2022897d62484b4cedf6.tar.gz
src-46b7a14ba40ee64e15ab2022897d62484b4cedf6.zip
Use MOPT_END in favor of MOPT_NULL, which better describes the purporse
of the macro.
Notes
Notes: svn path=/head/; revision=147242
Diffstat (limited to 'sbin/mount_ext2fs')
-rw-r--r--sbin/mount_ext2fs/mount_ext2fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_ext2fs/mount_ext2fs.c b/sbin/mount_ext2fs/mount_ext2fs.c
index a74a5d72fdf4..4e72454d177a 100644
--- a/sbin/mount_ext2fs/mount_ext2fs.c
+++ b/sbin/mount_ext2fs/mount_ext2fs.c
@@ -60,7 +60,7 @@ struct mntopt mopts[] = {
MOPT_FORCE,
MOPT_SYNC,
MOPT_UPDATE,
- MOPT_NULL
+ MOPT_END
};
static void usage(void) __dead2;