X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-darwin-fix-rospace.c;h=6a84005e5ca0aedb035aaa741a043278081897b9;hb=03363f0145ab5e88a17a4b881068dc921f7d122f;hp=79a628e94d07b8579524deea73b7cfd35ed12b9d;hpb=1ebf7c82cd385fe067421c06e2b3970e27a6f4b3;p=sbcl.git diff --git a/src/runtime/ppc-darwin-fix-rospace.c b/src/runtime/ppc-darwin-fix-rospace.c index 79a628e..6a84005 100644 --- a/src/runtime/ppc-darwin-fix-rospace.c +++ b/src/runtime/ppc-darwin-fix-rospace.c @@ -62,19 +62,19 @@ int main(int argc, char** argv) int j, max; max = seg->nsects; if (strncmp("SBCL", seg->segname, 4) == 0) { - is_sbcl = 1; - seg->vmsize = space_sizes[spacei]; + is_sbcl = 1; + seg->vmsize = space_sizes[spacei]; } else { - is_sbcl = 0; + is_sbcl = 0; } seg++; sectptr = (struct section*) seg; for (j = 0; j < max; j++) { - if (is_sbcl) { - sectptr->size = space_sizes[spacei]; - spacei++; - } - sectptr++; + if (is_sbcl) { + sectptr->size = space_sizes[spacei]; + spacei++; + } + sectptr++; } } }