summaryrefslogtreecommitdiff
path: root/sys/miscfs/overlay
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-09-03 21:01:12 +0000
committerchristos <christos@NetBSD.org>2006-09-03 21:01:12 +0000
commitdf1dfef2bcba0fbb8b4d2f7ef7707c4e0630077b (patch)
tree1c3635055ece423145d057414c16d5f9d828c170 /sys/miscfs/overlay
parentc35f9741bc3400a900f9677f0124675050ce7f8a (diff)
add missing initializers
Diffstat (limited to 'sys/miscfs/overlay')
-rw-r--r--sys/miscfs/overlay/overlay_vfsops.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/miscfs/overlay/overlay_vfsops.c b/sys/miscfs/overlay/overlay_vfsops.c
index b1b6256fe42..7fbdfd2f792 100644
--- a/sys/miscfs/overlay/overlay_vfsops.c
+++ b/sys/miscfs/overlay/overlay_vfsops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: overlay_vfsops.c,v 1.33 2005/12/11 12:24:51 christos Exp $ */
+/* $NetBSD: overlay_vfsops.c,v 1.34 2006/09/03 21:01:12 christos Exp $ */
/*
* Copyright (c) 1999, 2000 National Aeronautics & Space Administration
@@ -74,7 +74,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.33 2005/12/11 12:24:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.34 2006/09/03 21:01:12 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -297,5 +297,7 @@ struct vfsops overlay_vfsops = {
layerfs_snapshot,
vfs_stdextattrctl,
ov_vnodeopv_descs,
+ 0,
+ { NULL, NULL },
};
VFS_ATTACH(overlay_vfsops);