summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-05-13 11:53:40 +0000
committerbde <bde@FreeBSD.org>2002-05-13 11:53:40 +0000
commitf5fcb305eed4d9420e5731b668cb906ef05ca391 (patch)
tree3147e35f213729d533e8de1d5ff81accccb4c50a /sys
parent690ae48517842a53ca4297b86d648f82c32fbfe2 (diff)
downloadFreeBSD-src-f5fcb305eed4d9420e5731b668cb906ef05ca391.zip
FreeBSD-src-f5fcb305eed4d9420e5731b668cb906ef05ca391.tar.gz
Fixed a syntax error (a label not followed by a statement).
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/machdep.c2
-rw-r--r--sys/i386/i386/machdep.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index 8db2ab8..2ec8d1c 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -1354,7 +1354,7 @@ getmemsize(int first)
}
physmap[physmap_idx] = smap->base;
physmap[physmap_idx + 1] = smap->base + smap->length;
-next_run:
+next_run: ;
} while (vmf.vmf_ebx != 0);
if (physmap[1] != 0)
diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c
index 8db2ab8..2ec8d1c 100644
--- a/sys/i386/i386/machdep.c
+++ b/sys/i386/i386/machdep.c
@@ -1354,7 +1354,7 @@ getmemsize(int first)
}
physmap[physmap_idx] = smap->base;
physmap[physmap_idx + 1] = smap->base + smap->length;
-next_run:
+next_run: ;
} while (vmf.vmf_ebx != 0);
if (physmap[1] != 0)
OpenPOWER on IntegriCloud