diff options
| -rw-r--r-- | sys/dev/md/md.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 3b0eba934c9d..46ee5325e7f2 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -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; |
