From 05279b84b4a0f798b43ce1731784b7db577e772f Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 17 Apr 2004 13:32:13 +0000 Subject: Remove stray white spaces. --- cpukit/score/src/heapallocate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src/heapallocate.c') diff --git a/cpukit/score/src/heapallocate.c b/cpukit/score/src/heapallocate.c index aa789671a1..54bdd58e45 100644 --- a/cpukit/score/src/heapallocate.c +++ b/cpukit/score/src/heapallocate.c @@ -54,7 +54,7 @@ void *_Heap_Allocate( excess = size % the_heap->page_size; the_size = size + the_heap->page_size + HEAP_BLOCK_USED_OVERHEAD; - + if ( excess ) the_size += the_heap->page_size - excess; @@ -90,12 +90,12 @@ void *_Heap_Allocate( the_block->previous->next = the_block->next; ptr = _Heap_Start_of_user_area( the_block ); } - + /* * round ptr up to a multiple of page size * Have to save the bump amount in the buffer so that free can figure it out */ - + offset = the_heap->page_size - (((uint32_t ) ptr) & (the_heap->page_size - 1)); ptr = _Addresses_Add_offset( ptr, offset ); *(((uint32_t *) ptr) - 1) = offset; -- cgit v1.2.3