diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-07-03 09:35:31 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-07-03 09:35:31 +0000 |
commit | 82d9ae4e32fad7f55867e1e63054aef03b0a5fc8 (patch) | |
tree | edad9fa3ee2b84e36ff97de3eb8e7785f4a4ac86 /sys/fs | |
parent | bd2a88692c1fb156546036c002ec95af555151ff (diff) | |
download | src-test2-82d9ae4e32fad7f55867e1e63054aef03b0a5fc8.tar.gz src-test2-82d9ae4e32fad7f55867e1e63054aef03b0a5fc8.zip |
Notes
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/nwfs/nwfs_node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/nwfs/nwfs_node.c b/sys/fs/nwfs/nwfs_node.c index 25d92251d1d8..18b4556d93b4 100644 --- a/sys/fs/nwfs/nwfs_node.c +++ b/sys/fs/nwfs/nwfs_node.c @@ -66,7 +66,7 @@ static int nwhashlock = 0; MALLOC_DEFINE(M_NWNODE, "NWFS node", "NWFS vnode private part"); MALLOC_DEFINE(M_NWFSHASH, "NWFS hash", "NWFS has table"); -static int nwfs_sysctl_vnprint SYSCTL_HANDLER_ARGS; +static int nwfs_sysctl_vnprint (SYSCTL_HANDLER_ARGS); extern struct linker_set sysctl_vfs_nwfs; @@ -86,7 +86,7 @@ nwfs_hash_free(void) { } int -nwfs_sysctl_vnprint SYSCTL_HANDLER_ARGS { +nwfs_sysctl_vnprint (SYSCTL_HANDLER_ARGS) { struct nwnode *np; struct nwnode_hash_head *nhpp; struct vnode *vp; |