| # | Line 143 | Line 143 | newobject() /* get a new object */ | |
|---|---|---|
| 143 | i = nobjects >> 6; | |
| 144 | if (i >= MAXOBJBLK) | |
| 145 | return(OVOID); | |
| 146 | < | objblock[i] = (OBJREC *)bmalloc(0100*sizeof(OBJREC)); |
| 146 | > | objblock[i] = (OBJREC *)bmalloc(OBJBLKSIZ*sizeof(OBJREC)); |
| 147 | if (objblock[i] == NULL) | |
| 148 | return(OVOID); | |
| 149 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |