diff options
Diffstat (limited to 'sys/geom/geom_subr.c')
-rw-r--r-- | sys/geom/geom_subr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/geom/geom_subr.c b/sys/geom/geom_subr.c index 34fefcb..d672c3d 100644 --- a/sys/geom/geom_subr.c +++ b/sys/geom/geom_subr.c @@ -290,13 +290,12 @@ redo_rank(struct g_geom *gp) continue; /* no rank to original geom means loop */ - if (gp == gp1) { + if (gp == gp1) return (ELOOP); /* no rank, put it at the end move on */ TAILQ_REMOVE(&geoms, gp1, geoms); TAILQ_INSERT_TAIL(&geoms, gp1, geoms); - } } return (0); } |