summaryrefslogtreecommitdiff
path: root/sys/miscfs/umapfs
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-02 00:08:07 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-02 00:08:07 +0000
commitb0cd8767a1bcded08c1eac68d2242667b665cc18 (patch)
tree8138222b2b3d633530ad6ca0909eed075fe5080c /sys/miscfs/umapfs
parent00d2215173697a33bdee1c60e976005a28ff31af (diff)
Fixup umapfs_init prototype both on my part
Diffstat (limited to 'sys/miscfs/umapfs')
-rw-r--r--sys/miscfs/umapfs/umap.h4
-rw-r--r--sys/miscfs/umapfs/umap_subr.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/miscfs/umapfs/umap.h b/sys/miscfs/umapfs/umap.h
index e0e31727fa9..955d2096435 100644
--- a/sys/miscfs/umapfs/umap.h
+++ b/sys/miscfs/umapfs/umap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: umap.h,v 1.3 1996/02/29 13:08:04 niklas Exp $ */
+/* $OpenBSD: umap.h,v 1.4 1996/03/02 00:08:02 niklas Exp $ */
/* $NetBSD: umap.h,v 1.6 1996/02/09 22:41:00 christos Exp $ */
/*
@@ -91,6 +91,6 @@ extern struct vnode *umap_checkvp __P((struct vnode *vp, char *fil, int lno));
extern int (**umap_vnodeop_p) __P((void *));
extern struct vfsops umap_vfsops;
-int umapfs_init __P((void));
+void umapfs_init __P((void));
#endif /* _KERNEL */
diff --git a/sys/miscfs/umapfs/umap_subr.c b/sys/miscfs/umapfs/umap_subr.c
index 412294cd4c6..e082e792278 100644
--- a/sys/miscfs/umapfs/umap_subr.c
+++ b/sys/miscfs/umapfs/umap_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umap_subr.c,v 1.3 1996/02/29 13:08:05 niklas Exp $ */
+/* $OpenBSD: umap_subr.c,v 1.4 1996/03/02 00:08:06 niklas Exp $ */
/* $NetBSD: umap_subr.c,v 1.7 1996/02/09 22:41:02 christos Exp $ */
/*
@@ -83,7 +83,6 @@ umapfs_init()
printf("umapfs_init\n"); /* printed during system boot */
#endif
umap_node_hashtbl = hashinit(NUMAPNODECACHE, M_CACHE, &umap_node_hash);
- return 0;
}
/*