Pick up one file missed in the previous vprint() cleanup

This commit is contained in:
Nate Lawson 2003-03-03 19:50:36 +00:00
parent 99648386d3
commit 7dc9111650

View File

@ -214,8 +214,8 @@ static int
vop_nostrategy (struct vop_strategy_args *ap)
{
printf("No strategy for buffer at %p\n", ap->a_bp);
vprint("", ap->a_vp);
vprint("", ap->a_bp->b_vp);
vprint("vnode", ap->a_vp);
vprint("device vnode", ap->a_bp->b_vp);
ap->a_bp->b_ioflags |= BIO_ERROR;
ap->a_bp->b_error = EOPNOTSUPP;
bufdone(ap->a_bp);
@ -238,7 +238,7 @@ vop_nospecstrategy (struct vop_specstrategy_args *ap)
static int once;
if (!once) {
vprint("\nVOP_SPECSTRATEGY on non-VCHR\n", ap->a_vp);
vprint("VOP_SPECSTRATEGY on non-VCHR", ap->a_vp);
backtrace();
once++;
}