fix up yet more annoying signed/unsigned and mixed type errors
This commit is contained in:
@ -1622,7 +1622,7 @@ static void initarea()
|
||||
brkaddr = malloc(AREASIZE);
|
||||
brktop = brkaddr + AREASIZE;
|
||||
|
||||
while ((int) sbrk(0) & ALIGN)
|
||||
while ((long) sbrk(0) & ALIGN)
|
||||
sbrk(1);
|
||||
areabot = (struct region *) sbrk(REGSIZE);
|
||||
|
||||
|
Reference in New Issue
Block a user