diff options
| author | christos <christos@NetBSD.org> | 2006-09-03 21:01:12 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-09-03 21:01:12 +0000 |
| commit | df1dfef2bcba0fbb8b4d2f7ef7707c4e0630077b (patch) | |
| tree | 1c3635055ece423145d057414c16d5f9d828c170 /sys/miscfs/nullfs | |
| parent | c35f9741bc3400a900f9677f0124675050ce7f8a (diff) | |
add missing initializers
Diffstat (limited to 'sys/miscfs/nullfs')
| -rw-r--r-- | sys/miscfs/nullfs/null_vfsops.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c index 5e1340bd641..a5af5a85968 100644 --- a/sys/miscfs/nullfs/null_vfsops.c +++ b/sys/miscfs/nullfs/null_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: null_vfsops.c,v 1.58 2005/12/11 12:24:51 christos Exp $ */ +/* $NetBSD: null_vfsops.c,v 1.59 2006/09/03 21:01:12 christos Exp $ */ /* * Copyright (c) 1999 National Aeronautics & Space Administration @@ -74,7 +74,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.58 2005/12/11 12:24:51 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.59 2006/09/03 21:01:12 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -314,5 +314,7 @@ struct vfsops nullfs_vfsops = { layerfs_snapshot, vfs_stdextattrctl, nullfs_vnodeopv_descs, + 0, + { NULL, NULL }, }; VFS_ATTACH(nullfs_vfsops); |
