The previous commit missed fixing 2 old printf format errors and

introduced a format printf error.
This commit is contained in:
bde 2002-03-19 04:07:29 +00:00
parent 918221515e
commit c75458a004

View File

@ -384,9 +384,9 @@ 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,
(long long)bp->bio_blkno,
bp->bio_bcount / DEV_BSIZE, bp->bio_data);
(void *)bp, devtoname(bp->bio_dev), bp->bio_flags,
(long long)bp->bio_blkno, bp->bio_bcount / DEV_BSIZE,
(void *)bp->bio_data);
sc = bp->bio_dev->si_drv1;