summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/malloc.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-21 16:17:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-21 16:17:12 +0000
commit4fd617952edb821ccc8d5f6e4d6a71b131288519 (patch)
tree409cb0ddc7d9be1670cae638d501fc9c75cca43b /c/src/exec/libcsupport/src/malloc.c
parentControl and Data addresses were swapped for port A. (diff)
downloadrtems-4fd617952edb821ccc8d5f6e4d6a71b131288519.tar.bz2
Added casts and fixed line break.
Diffstat (limited to 'c/src/exec/libcsupport/src/malloc.c')
-rw-r--r--c/src/exec/libcsupport/src/malloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/c/src/exec/libcsupport/src/malloc.c b/c/src/exec/libcsupport/src/malloc.c
index b93950131a..e8387d4364 100644
--- a/c/src/exec/libcsupport/src/malloc.c
+++ b/c/src/exec/libcsupport/src/malloc.c
@@ -77,7 +77,7 @@ void RTEMS_Malloc_Initialize(
if (!starting_address) {
u32_address = (unsigned int)sbrk(length);
- if (u32_address == -1) {
+ if (u32_address == (rtems_unsigned32) -1) {
rtems_fatal_error_occurred( RTEMS_NO_MEMORY );
/* DOES NOT RETURN!!! */
}
@@ -165,7 +165,8 @@ void *malloc(
the_size = ((size + sbrk_amount) / sbrk_amount * sbrk_amount);
- if (((rtems_unsigned32)starting_address = (void *)sbrk(the_size)) == -1)
+ if (((rtems_unsigned32)starting_address = (void *)sbrk(the_size))
+ == (rtems_unsigned32) -1)
return (void *) 0;
status = rtems_region_extend(