Fix printf warning caused by recent changes in bio_pblkno's type.

This commit is contained in:
Andrew Gallatin 2002-03-19 01:45:04 +00:00
parent 9873dd6133
commit 54ed0c3221

View File

@ -384,7 +384,8 @@ mdstrategy(struct bio *bp)
if (md_debug > 1)
printf("mdstrategy(%p) %s %x, %lld, %ld, %p)\n",
bp, devtoname(bp->bio_dev), bp->bio_flags, bp->bio_blkno,
bp, devtoname(bp->bio_dev), bp->bio_flags,
(long long)bp->bio_blkno,
bp->bio_bcount / DEV_BSIZE, bp->bio_data);
sc = bp->bio_dev->si_drv1;