From 4fd617952edb821ccc8d5f6e4d6a71b131288519 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 21 Oct 1997 16:17:12 +0000 Subject: Added casts and fixed line break. --- c/src/exec/libcsupport/src/malloc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'c/src/exec/libcsupport/src/malloc.c') 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( -- cgit v1.2.3