summaryrefslogtreecommitdiff
path: root/sys/ufs/ext2fs
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ufs/ext2fs')
-rw-r--r--sys/ufs/ext2fs/ext2fs_alloc.c7
-rw-r--r--sys/ufs/ext2fs/ext2fs_extern.h8
-rw-r--r--sys/ufs/ext2fs/ext2fs_vnops.c4
3 files changed, 9 insertions, 10 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_alloc.c b/sys/ufs/ext2fs/ext2fs_alloc.c
index 05cc4fca44d..9b2cf175a22 100644
--- a/sys/ufs/ext2fs/ext2fs_alloc.c
+++ b/sys/ufs/ext2fs/ext2fs_alloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_alloc.c,v 1.8 2002/03/14 01:27:14 millert Exp $ */
+/* $OpenBSD: ext2fs_alloc.c,v 1.9 2002/03/14 03:16:13 millert Exp $ */
/* $NetBSD: ext2fs_alloc.c,v 1.10 2001/07/05 08:38:27 toshii Exp $ */
/*
@@ -59,9 +59,8 @@ u_long ext2gennumber;
static ufs_daddr_t ext2fs_alloccg(struct inode *, int, ufs_daddr_t, int);
static u_long ext2fs_dirpref(struct m_ext2fs *);
static void ext2fs_fserr(struct m_ext2fs *, u_int, char *);
-static u_long ext2fs_hashalloc __P((struct inode *, int, long, int,
- ufs_daddr_t (*)(struct inode *, int, ufs_daddr_t,
- int)));
+static u_long ext2fs_hashalloc(struct inode *, int, long, int,
+ ufs_daddr_t (*)(struct inode *, int, ufs_daddr_t, int));
static ufs_daddr_t ext2fs_nodealloccg(struct inode *, int, ufs_daddr_t, int);
static ufs_daddr_t ext2fs_mapsearch(struct m_ext2fs *, char *, ufs_daddr_t);
diff --git a/sys/ufs/ext2fs/ext2fs_extern.h b/sys/ufs/ext2fs/ext2fs_extern.h
index 07515696322..f9b721fafdd 100644
--- a/sys/ufs/ext2fs/ext2fs_extern.h
+++ b/sys/ufs/ext2fs/ext2fs_extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_extern.h,v 1.14 2002/03/14 01:27:14 millert Exp $ */
+/* $OpenBSD: ext2fs_extern.h,v 1.15 2002/03/14 03:16:13 millert Exp $ */
/* $NetBSD: ext2fs_extern.h,v 1.1 1997/06/11 09:33:55 bouyer Exp $ */
/*-
@@ -140,10 +140,10 @@ int ext2fs_rmdir(void *);
int ext2fs_symlink(void *);
int ext2fs_readlink(void *);
int ext2fs_advlock(void *);
-int ext2fs_vinit __P((struct mount *, int (**specops)(void *),
- int (**fifoops)(void *), struct vnode **));
+int ext2fs_vinit(struct mount *, int (**specops)(void *),
+ int (**fifoops)(void *), struct vnode **);
int ext2fs_makeinode(int, struct vnode *, struct vnode **,
- struct componentname *cnp);
+ struct componentname *cnp);
int ext2fs_fsync(void *);
int ext2fs_reclaim(void *);
diff --git a/sys/ufs/ext2fs/ext2fs_vnops.c b/sys/ufs/ext2fs/ext2fs_vnops.c
index 8e9187a32c0..09b96dd1d17 100644
--- a/sys/ufs/ext2fs/ext2fs_vnops.c
+++ b/sys/ufs/ext2fs/ext2fs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_vnops.c,v 1.23 2002/03/14 01:27:14 millert Exp $ */
+/* $OpenBSD: ext2fs_vnops.c,v 1.24 2002/03/14 03:16:13 millert Exp $ */
/* $NetBSD: ext2fs_vnops.c,v 1.1 1997/06/11 09:34:09 bouyer Exp $ */
/*
@@ -1468,7 +1468,7 @@ struct vnodeopv_entry_desc ext2fs_vnodeop_entries[] = {
{ &vop_pathconf_desc, ufs_pathconf }, /* pathconf */
{ &vop_advlock_desc, ext2fs_advlock }, /* advlock */
{ &vop_bwrite_desc, vop_generic_bwrite }, /* bwrite */
- { (struct vnodeop_desc*)NULL, (int(*)(void*))NULL }
+ { (struct vnodeop_desc*)NULL, (int(*)(void *))NULL }
};
struct vnodeopv_desc ext2fs_vnodeop_opv_desc =
{ &ext2fs_vnodeop_p, ext2fs_vnodeop_entries };