aboutsummaryrefslogtreecommitdiff
path: root/sys/geom
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2015-03-27 12:45:20 +0000
committerAlexander Motin <mav@FreeBSD.org>2015-03-27 12:45:20 +0000
commit5d85cd2d115995c02c3afadebd64a3688d9b7261 (patch)
tree2f4fce20d863777b52016c23455395cca1c8e8cf /sys/geom
parent3ab0187add388d0895f0defd46e80d82a73a68fe (diff)
downloadsrc-5d85cd2d115995c02c3afadebd64a3688d9b7261.tar.gz
src-5d85cd2d115995c02c3afadebd64a3688d9b7261.zip
Remove extra semicolon.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=280758
Diffstat (limited to 'sys/geom')
-rw-r--r--sys/geom/mirror/g_mirror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/mirror/g_mirror.c b/sys/geom/mirror/g_mirror.c
index d46b3fa5311f..191227110e9a 100644
--- a/sys/geom/mirror/g_mirror.c
+++ b/sys/geom/mirror/g_mirror.c
@@ -1582,7 +1582,7 @@ g_mirror_request_split(struct g_mirror_softc *sc, struct bio *bp)
cbp = g_clone_bio(bp);
if (cbp == NULL) {
while ((cbp = bioq_takefirst(&queue)) != NULL)
- g_destroy_bio(cbp);;
+ g_destroy_bio(cbp);
if (bp->bio_error == 0)
bp->bio_error = ENOMEM;
g_io_deliver(bp, bp->bio_error);