diff options
| author | John Dyson <dyson@FreeBSD.org> | 1995-09-04 14:58:14 +0000 |
|---|---|---|
| committer | John Dyson <dyson@FreeBSD.org> | 1995-09-04 14:58:14 +0000 |
| commit | b3aad5a7290339893dcf728a040d1967310672af (patch) | |
| tree | 2ab7a4cea1a72d3527794161dd2fdcaf399723ae | |
| parent | 170db9c63a297afe39c83db0991076eacc500088 (diff) | |
Notes
| -rw-r--r-- | sys/dev/vn/vn.c | 2 |
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; |
