summaryrefslogtreecommitdiff
path: root/sys/dev/md/md.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2002-03-19 04:07:29 +0000
committerBruce Evans <bde@FreeBSD.org>2002-03-19 04:07:29 +0000
commit1ab0b5f9200dabc97731da98922fdc24689676d5 (patch)
tree7e3a92f36952879b2f6dce5a288ae27cc1678ae4 /sys/dev/md/md.c
parentdde1888c4acd54bf2a34b758fb59374e4ef89a73 (diff)
Notes
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r--sys/dev/md/md.c6
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;