| # | Line 34 | Line 34 | newcbeam() /* allocate new entry at end of cbeam arra | |
|---|---|---|
| 34 | cbeam = (PACKHEAD *)malloc( | |
| 35 | maxcbeam*sizeof(PACKHEAD) ); | |
| 36 | else | |
| 37 | < | cbeam = (PACKHEAD *)realloc( (char *)cbeam, |
| 37 | > | cbeam = (PACKHEAD *)realloc((void *)cbeam, |
| 38 | maxcbeam*sizeof(PACKHEAD) ); | |
| 39 | if (cbeam == NULL) | |
| 40 | error(SYSTEM, "out of memory in newcbeam"); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |