From d2b52eb257bb295f440666f852fa4dedd572e1ba Mon Sep 17 00:00:00 2001 From: Mike Pritchard Date: Mon, 10 Feb 1997 16:27:53 +0000 Subject: [PATCH] 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. --- sys/ufs/ffs/ffs_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c index 629a228d43c..8d26d5c04a9 100644 --- a/sys/ufs/ffs/ffs_subr.c +++ b/sys/ufs/ffs/ffs_subr.c @@ -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;