summaryrefslogtreecommitdiffstats
path: root/sys/dev/md
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2006-11-01 18:59:06 +0000
committerpjd <pjd@FreeBSD.org>2006-11-01 18:59:06 +0000
commitda7da1722d65a3eb47f7759be1f83eb6ad803fc1 (patch)
treee109377aa1b36af495c93ee157c95e9a0b034c58 /sys/dev/md
parent6058d96715589bb44a2bc35963b35cd8102c47df (diff)
downloadFreeBSD-src-da7da1722d65a3eb47f7759be1f83eb6ad803fc1.zip
FreeBSD-src-da7da1722d65a3eb47f7759be1f83eb6ad803fc1.tar.gz
Style nits.
Diffstat (limited to 'sys/dev/md')
-rw-r--r--sys/dev/md/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 6755bb3..3b6cc6b 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -542,9 +542,9 @@ mdstart_vnode(struct md_s *sc, struct bio *bp)
auio.uio_iovcnt = 1;
auio.uio_offset = (vm_ooffset_t)bp->bio_offset;
auio.uio_segflg = UIO_SYSSPACE;
- if(bp->bio_cmd == BIO_READ)
+ if (bp->bio_cmd == BIO_READ)
auio.uio_rw = UIO_READ;
- else if(bp->bio_cmd == BIO_WRITE)
+ else if (bp->bio_cmd == BIO_WRITE)
auio.uio_rw = UIO_WRITE;
else
panic("wrong BIO_OP in mdstart_vnode");
OpenPOWER on IntegriCloud