1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

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:
Mike Pritchard 1997-02-10 16:27:53 +00:00
parent 06bcc9e510
commit d2b52eb257
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22539

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;