add missing initializers

This commit is contained in:
christos 2006-09-02 07:12:11 +00:00
parent faec8658c7
commit 66f851cf96
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: msdosfs_vfsops.c,v 1.34 2006/08/14 14:06:26 gdt Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.35 2006/09/02 07:12:11 christos Exp $ */
/*- /*-
* Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank. * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@ -48,7 +48,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.34 2006/08/14 14:06:26 gdt Exp $"); __KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.35 2006/09/02 07:12:11 christos Exp $");
#if defined(_KERNEL_OPT) #if defined(_KERNEL_OPT)
#include "opt_quota.h" #include "opt_quota.h"
@ -134,6 +134,8 @@ struct vfsops msdosfs_vfsops = {
(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp, (int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
vfs_stdextattrctl, vfs_stdextattrctl,
msdosfs_vnodeopv_descs, msdosfs_vnodeopv_descs,
0,
{ NULL, NULL },
}; };
VFS_ATTACH(msdosfs_vfsops); VFS_ATTACH(msdosfs_vfsops);