| # | Line 245 | Line 245 | int fd; | |
|---|---|---|
| 245 | if (pp->elen == 0) | |
| 246 | pp->errs = (char *)malloc(nr+1); | |
| 247 | else | |
| 248 | < | pp->errs = (char *)realloc(pp->errs, pp->elen+nr+1); |
| 248 | > | pp->errs = (char *)realloc((void *)pp->errs, pp->elen+nr+1); |
| 249 | if (pp->errs == NULL) { | |
| 250 | perror("malloc failed"); | |
| 251 | exit(1); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |