Remove a dead continue.
Harmless, found by Brainy
This commit is contained in:
parent
3c019c621b
commit
c9d5e93a69
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: disksubr.c,v 1.62 2014/09/21 15:43:11 christos Exp $ */
|
/* $NetBSD: disksubr.c,v 1.63 2015/07/04 06:13:01 maxv Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
|
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
|
||||||
@ -66,7 +66,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.62 2014/09/21 15:43:11 christos Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.63 2015/07/04 06:13:01 maxv Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
@ -331,7 +331,6 @@ readdisklabel(dev_t dev, void (*strat)(struct buf *), struct disklabel *lp, stru
|
|||||||
*/
|
*/
|
||||||
msg = "bad partition info (environ < 11)";
|
msg = "bad partition info (environ < 11)";
|
||||||
goto done;
|
goto done;
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: disksubr.c,v 1.25 2012/02/02 21:54:34 phx Exp $ */
|
/* $NetBSD: disksubr.c,v 1.26 2015/07/04 06:14:41 maxv Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2010 Frank Wille.
|
* Copyright (c) 2010 Frank Wille.
|
||||||
@ -63,7 +63,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.25 2012/02/02 21:54:34 phx Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.26 2015/07/04 06:14:41 maxv Exp $");
|
||||||
|
|
||||||
#include "opt_disksubr.h"
|
#include "opt_disksubr.h"
|
||||||
|
|
||||||
@ -410,7 +410,6 @@ read_rdb_label(dev_t dev, void (*strat)(struct buf *), struct disklabel *lp,
|
|||||||
*/
|
*/
|
||||||
msg = "bad partition info (environ < 11)";
|
msg = "bad partition info (environ < 11)";
|
||||||
goto done;
|
goto done;
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user