aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Dyson <dyson@FreeBSD.org>1995-09-04 14:58:14 +0000
committerJohn Dyson <dyson@FreeBSD.org>1995-09-04 14:58:14 +0000
commitb3aad5a7290339893dcf728a040d1967310672af (patch)
tree2ab7a4cea1a72d3527794161dd2fdcaf399723ae
parent170db9c63a297afe39c83db0991076eacc500088 (diff)
Notes
-rw-r--r--sys/dev/vn/vn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c
index d5d268717e16..a1526cdf0860 100644
--- a/sys/dev/vn/vn.c
+++ b/sys/dev/vn/vn.c
@@ -292,7 +292,7 @@ vnstrategy(struct buf *bp)
int off, s, nra;
nra = 0;
- error = VOP_BMAP(vn->sc_vp, bn / bsize, &vp, &nbn, &nra);
+ error = VOP_BMAP(vn->sc_vp, bn / bsize, &vp, &nbn, &nra, NULL);
if (error == 0 && (long)nbn == -1)
error = EIO;