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/msdosfs/msdosfs_vfsops.c | |
parent | c22e4d7d5d7943fda9d671aff1a3f48811a21f44 (diff) |
Convert struct vfsops initializer to C99 style.
OK visa@
Diffstat (limited to 'sys/msdosfs/msdosfs_vfsops.c')
-rw-r--r-- | sys/msdosfs/msdosfs_vfsops.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c index 58d0c95ec65..ddf2c1f1d55 100644 --- a/sys/msdosfs/msdosfs_vfsops.c +++ b/sys/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msdosfs_vfsops.c,v 1.91 2019/07/25 01:43:21 cheloha Exp $ */ +/* $OpenBSD: msdosfs_vfsops.c,v 1.92 2019/12/26 13:28:49 bluhm Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.48 1997/10/18 02:54:57 briggs Exp $ */ /*- @@ -791,17 +791,17 @@ msdosfs_check_export(struct mount *mp, struct mbuf *nam, int *exflagsp, size_t, struct proc *))eopnotsupp) const struct vfsops msdosfs_vfsops = { - msdosfs_mount, - msdosfs_start, - msdosfs_unmount, - msdosfs_root, - msdosfs_quotactl, - msdosfs_statfs, - msdosfs_sync, - msdosfs_vget, - msdosfs_fhtovp, - msdosfs_vptofh, - msdosfs_init, - msdosfs_sysctl, - msdosfs_check_export + .vfs_mount = msdosfs_mount, + .vfs_start = msdosfs_start, + .vfs_unmount = msdosfs_unmount, + .vfs_root = msdosfs_root, + .vfs_quotactl = msdosfs_quotactl, + .vfs_statfs = msdosfs_statfs, + .vfs_sync = msdosfs_sync, + .vfs_vget = msdosfs_vget, + .vfs_fhtovp = msdosfs_fhtovp, + .vfs_vptofh = msdosfs_vptofh, + .vfs_init = msdosfs_init, + .vfs_sysctl = msdosfs_sysctl, + .vfs_checkexp = msdosfs_check_export, }; |