From 644f53e4e985bfdf52a181f810706eedcddda8b8 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 3 Sep 2006 06:51:04 +0000 Subject: [PATCH] add missing initializers --- sys/fs/tmpfs/tmpfs_vfsops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index 9d081b85a7b5..42d47525a2a9 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: tmpfs_vfsops.c,v 1.13 2006/07/13 12:00:25 martin Exp $ */ +/* $NetBSD: tmpfs_vfsops.c,v 1.14 2006/09/03 06:51:04 christos Exp $ */ /* * Copyright (c) 2005, 2006 The NetBSD Foundation, Inc. @@ -49,7 +49,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.13 2006/07/13 12:00:25 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.14 2006/09/03 06:51:04 christos Exp $"); #include #include @@ -468,5 +468,7 @@ struct vfsops tmpfs_vfsops = { tmpfs_snapshot, /* vfs_snapshot */ vfs_stdextattrctl, /* vfs_extattrctl */ tmpfs_vnodeopv_descs, + 0, /* vfs_refcount */ + { NULL, NULL }, }; VFS_ATTACH(tmpfs_vfsops);