| # | Line 44 | Line 44 | double tthresh; /* acceptance threshold (TBD) */ | |
|---|---|---|
| 44 | static void | |
| 45 | new_kids(TNODE *pn) | |
| 46 | { | |
| 47 | < | /* XXX VC warns about 32 bit shift coerced to 64 bit */ |
| 48 | < | pn->kid = (TNODE *)calloc(1<<ttrank, sizeof(TNODE)); |
| 47 | > | pn->kid = (TNODE *)calloc((size_t)1<<ttrank, sizeof(TNODE)); |
| 48 | if (pn->kid == NULL) | |
| 49 | error(SYSTEM, "out of memory in new_kids"); | |
| 50 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |