diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:48:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:48:39 +0000 |
commit | a68ea1cb93c29125bc4f30ddd415fca02249e010 (patch) | |
tree | 5741be315758b807145c24da9ff3a1dbf8fce4e8 /shell/msh.c | |
parent | 9a58b02ec75caafb7214f1ad0317f9a4830cbd2a (diff) | |
download | busybox-w32-a68ea1cb93c29125bc4f30ddd415fca02249e010.tar.gz busybox-w32-a68ea1cb93c29125bc4f30ddd415fca02249e010.tar.bz2 busybox-w32-a68ea1cb93c29125bc4f30ddd415fca02249e010.zip |
fix up yet more annoying signed/unsigned and mixed type errors
Diffstat (limited to 'shell/msh.c')
-rw-r--r-- | shell/msh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/msh.c b/shell/msh.c index 08ca792fa..d56db5714 100644 --- a/shell/msh.c +++ b/shell/msh.c | |||
@@ -1622,7 +1622,7 @@ static void initarea() | |||
1622 | brkaddr = malloc(AREASIZE); | 1622 | brkaddr = malloc(AREASIZE); |
1623 | brktop = brkaddr + AREASIZE; | 1623 | brktop = brkaddr + AREASIZE; |
1624 | 1624 | ||
1625 | while ((int) sbrk(0) & ALIGN) | 1625 | while ((long) sbrk(0) & ALIGN) |
1626 | sbrk(1); | 1626 | sbrk(1); |
1627 | areabot = (struct region *) sbrk(REGSIZE); | 1627 | areabot = (struct region *) sbrk(REGSIZE); |
1628 | 1628 | ||