diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-12-26 13:28:51 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-12-26 13:28:51 +0000 |
commit | 63be33c9a551c533eb1c57e2987094e1f4ed6e53 (patch) | |
tree | 86e20a781c6d97691fe6007e8a43825e1c4020aa /sys/isofs/udf | |
parent | c22e4d7d5d7943fda9d671aff1a3f48811a21f44 (diff) |
Convert struct vfsops initializer to C99 style.
OK visa@
Diffstat (limited to 'sys/isofs/udf')
-rw-r--r-- | sys/isofs/udf/udf_vfsops.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/isofs/udf/udf_vfsops.c b/sys/isofs/udf/udf_vfsops.c index 190c65700ca..384ddca7383 100644 --- a/sys/isofs/udf/udf_vfsops.c +++ b/sys/isofs/udf/udf_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_vfsops.c,v 1.66 2019/07/25 01:43:21 cheloha Exp $ */ +/* $OpenBSD: udf_vfsops.c,v 1.67 2019/12/26 13:28:49 bluhm Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -83,19 +83,19 @@ int udf_get_mpartmap(struct umount *, struct part_map_meta *); int udf_mountfs(struct vnode *, struct mount *, uint32_t, struct proc *); const struct vfsops udf_vfsops = { - .vfs_fhtovp = udf_fhtovp, - .vfs_init = udf_init, - .vfs_mount = udf_mount, - .vfs_start = udf_start, - .vfs_root = udf_root, - .vfs_quotactl = udf_quotactl, - .vfs_statfs = udf_statfs, - .vfs_sync = udf_sync, - .vfs_unmount = udf_unmount, - .vfs_vget = udf_vget, - .vfs_vptofh = udf_vptofh, - .vfs_sysctl = udf_sysctl, - .vfs_checkexp = udf_checkexp, + .vfs_mount = udf_mount, + .vfs_start = udf_start, + .vfs_unmount = udf_unmount, + .vfs_root = udf_root, + .vfs_quotactl = udf_quotactl, + .vfs_statfs = udf_statfs, + .vfs_sync = udf_sync, + .vfs_vget = udf_vget, + .vfs_fhtovp = udf_fhtovp, + .vfs_vptofh = udf_vptofh, + .vfs_init = udf_init, + .vfs_sysctl = udf_sysctl, + .vfs_checkexp = udf_checkexp, }; int |