diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 219ca185..3fb53483 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -283,7 +283,7 @@ load_boards(char *key) } #endif else { // general case - nbrd = (boardstat_t *) MALLOC(sizeof(boardstat_t) * numboards); + nbrd = (boardstat_t *) malloc(sizeof(boardstat_t) * numboards); for (i = 0; i < numboards; i++) { n = SHM->bsorted[type][i]; if (n<0 || (bptr = &bcache[n]) == NULL) |