summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 5307fa04..eb6a13d4 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -704,9 +704,9 @@ load_uidofgid(const int gid, const int type)
}
bcache[gid - 1].childcount = childcount;
if (currbptr == &bcache[gid - 1])
- currbptr->firstchild[type] = (boardheader_t *) ~ 0;
+ currbptr->firstchild[type] = NULL;
else
- currbptr->next[type] = (boardheader_t *) ~ 0;
+ currbptr->next[type] = NULL;
}
static boardstat_t *
@@ -826,7 +826,7 @@ load_boards(char *key)
} else {
int childcount = bptr->childcount;
nbrd = (boardstat_t *) malloc(childcount * sizeof(boardstat_t));
- for (bptr = bptr->firstchild[type]; bptr != (boardheader_t *) ~ 0;
+ for (bptr = bptr->firstchild[type]; bptr != NULL;
bptr = bptr->next[type]) {
n = (int)(bptr - bcache);
if (!((state = Ben_Perm(bptr)) || (currmode & MODE_MENU))