diff options
author | Xin LI <delphij@FreeBSD.org> | 2005-06-10 09:51:43 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2005-06-10 09:51:43 +0000 |
commit | 46b7a14ba40ee64e15ab2022897d62484b4cedf6 (patch) | |
tree | 0e6a4ab8b8aa5578febfa41f0a076ce9ae4cf5a8 /sbin/mount_cd9660/mount_cd9660.c | |
parent | 6dded714b5f8729cf365ae14fb6c3a7dd1a30422 (diff) |
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_cd9660/mount_cd9660.c')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index 4a6461a6b64d..1633f4fd6d82 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -77,7 +77,7 @@ struct mntopt mopts[] = { { "rrip", 1, ISOFSMNT_NORRIP, 1 }, { "joliet", 1, ISOFSMNT_NOJOLIET, 1 }, { "strictjoliet", 1, ISOFSMNT_BROKENJOLIET, 1 }, - MOPT_NULL + MOPT_END }; int get_ssector(const char *dev); |