[BACK]Return to elf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Diff for /src/usr.bin/gprof/elf.c between version 1.4 and 1.5

version 1.4, 2007/01/09 15:13:37 version 1.5, 2015/08/20 22:32:41
Line 103 
Line 103 
 #endif  #endif
   
     /* Allocate memory for them, plus a terminating entry. */      /* Allocate memory for them, plus a terminating entry. */
     if ((nl = (nltype *)calloc(nname + 1, sizeof(nltype))) == NULL)      if ((nl = calloc(nname + 1, sizeof(nltype))) == NULL)
         errx(1, "Insufficient memory for symbol table");          errx(1, "Insufficient memory for symbol table");
   
     /* Read them in. */      /* Read them in. */

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5