diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-11 16:08:51 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-11 16:08:51 +0000 |
commit | 7924b5b21bdc71d47b6162b7b1145eb2d98a1ae3 (patch) | |
tree | 7870003757b8e32a6cf615f58598647d7b5d3280 /sys/isofs/cd9660/cd9660_node.c | |
parent | 39929f6d9647b209b77dec51adf21cddcbd03fe0 (diff) |
Remove the simplelock argument from vrecycle();
ok pedro@, sturm@
Diffstat (limited to 'sys/isofs/cd9660/cd9660_node.c')
-rw-r--r-- | sys/isofs/cd9660/cd9660_node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index e5ed56609ec..6f97850f4bb 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_node.c,v 1.17 2007/03/21 17:29:31 thib Exp $ */ +/* $OpenBSD: cd9660_node.c,v 1.18 2007/04/11 16:08:50 thib Exp $ */ /* $NetBSD: cd9660_node.c,v 1.17 1997/05/05 07:13:57 mycroft Exp $ */ /*- @@ -255,7 +255,7 @@ cd9660_inactive(v) * so that it can be reused immediately. */ if (ip->inode.iso_mode == 0) - vrecycle(vp, (struct simplelock *)0, p); + vrecycle(vp, p); return (error); } |