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/objectallocate.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpukit/score/src/objectallocate.c') diff --git a/cpukit/score/src/objectallocate.c b/cpukit/score/src/objectallocate.c index 2bac4d3378..3a2d418b7a 100644 --- a/cpukit/score/src/objectallocate.c +++ b/cpukit/score/src/objectallocate.c @@ -46,23 +46,23 @@ Objects_Control *_Objects_Allocate( * If the list is empty then we are out of objects and need to * extend information base. */ - + if ( !the_object ) { _Objects_Extend_information( information ); the_object = (Objects_Control *) _Chain_Get( &information->Inactive ); } - + if ( the_object ) { uint32_t block; - + block = _Objects_Get_index( the_object->id ) - _Objects_Get_index( information->minimum_id ); block /= information->allocation_size; - + information->inactive_per_block[ block ]--; information->inactive--; } } - + return the_object; } -- cgit v1.2.3