From 5d85cd2d115995c02c3afadebd64a3688d9b7261 Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Fri, 27 Mar 2015 12:45:20 +0000 Subject: [PATCH] Remove extra semicolon. MFC after: 1 week --- sys/geom/mirror/g_mirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);