Fixed a syntax error (a label not followed by a statement).

This commit is contained in:
Bruce Evans 2002-05-13 11:53:40 +00:00
parent 7893b524b9
commit f5d3fceede
2 changed files with 2 additions and 2 deletions

View File

@ -1354,7 +1354,7 @@ getmemsize(int first)
} }
physmap[physmap_idx] = smap->base; physmap[physmap_idx] = smap->base;
physmap[physmap_idx + 1] = smap->base + smap->length; physmap[physmap_idx + 1] = smap->base + smap->length;
next_run: next_run: ;
} while (vmf.vmf_ebx != 0); } while (vmf.vmf_ebx != 0);
if (physmap[1] != 0) if (physmap[1] != 0)

View File

@ -1354,7 +1354,7 @@ getmemsize(int first)
} }
physmap[physmap_idx] = smap->base; physmap[physmap_idx] = smap->base;
physmap[physmap_idx + 1] = smap->base + smap->length; physmap[physmap_idx + 1] = smap->base + smap->length;
next_run: next_run: ;
} while (vmf.vmf_ebx != 0); } while (vmf.vmf_ebx != 0);
if (physmap[1] != 0) if (physmap[1] != 0)