Make ffs_subr.c compile when DIAGNOSTIC is defined.

It looks like this was broken before the Lite2 merge :-(.
VOP_BMAP was being called with the wrong number of arguments.
This commit is contained in:
mpp 1997-02-10 16:27:53 +00:00
parent 65726e4ca4
commit 64942c3150

View File

@ -142,7 +142,7 @@ ffs_checkoverlap(bp, ip)
ep->b_vp == NULLVP)
continue;
if (VOP_BMAP(ep->b_vp, (ufs_daddr_t)0, &vp, (ufs_daddr_t)0,
NULL))
NULL, NULL))
continue;
if (vp != ip->i_devvp)
continue;