summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2005-03-05 18:14:44 +0000
committerdes <des@FreeBSD.org>2005-03-05 18:14:44 +0000
commit035bc88881dd10027aa6db817d23d5ba158f3fa6 (patch)
treec4218f94c798a0e0479abe26830a1c4243b3cfaa /sys
parent01223e02a3b48d8df4d2b0f5544aeea3ddbf8108 (diff)
downloadFreeBSD-src-035bc88881dd10027aa6db817d23d5ba158f3fa6.zip
FreeBSD-src-035bc88881dd10027aa6db817d23d5ba158f3fa6.tar.gz
Replace goto with continue.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/machdep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index 8dc5b52..2a2b147 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -907,13 +907,12 @@ getmemsize(caddr_t kmdp, u_int64_t first)
if (boothowto & RB_VERBOSE)
printf(
"Overlapping or non-montonic memory region, ignoring second region\n");
- goto next_run;
+ continue;
}
}
if (smap->base == physmap[physmap_idx + 1]) {
physmap[physmap_idx + 1] += smap->length;
-next_run:
continue;
}
OpenPOWER on IntegriCloud