| # | Line 216 | Line 216 | char *gfn, *pfn; | |
|---|---|---|
| 216 | hdlist[hd] = (HOLO *)malloc(sizeof(HOLO)); | |
| 217 | if (hdlist[hd] == NULL) | |
| 218 | error(SYSTEM, "out of memory in add_holo"); | |
| 219 | < | bcopy((char *)hdg, (char *)hdlist[hd], sizeof(HDGRID)); |
| 219 | > | bcopy((void *)hdg, (void *)hdlist[hd], sizeof(HDGRID)); |
| 220 | hdcompgrid(hdlist[hd]); | |
| 221 | hdgfn[hd] = savestr(gfn); | |
| 222 | hdpfn[hd] = pfn && *pfn ? savestr(pfn) : (char *)NULL; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |