mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04: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:
parent
06bcc9e510
commit
d2b52eb257
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue