summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectallocatebyindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectallocatebyindex.c')
-rw-r--r--cpukit/score/src/objectallocatebyindex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/objectallocatebyindex.c b/cpukit/score/src/objectallocatebyindex.c
index ec951d9747..af13780ad6 100644
--- a/cpukit/score/src/objectallocatebyindex.c
+++ b/cpukit/score/src/objectallocatebyindex.c
@@ -54,13 +54,13 @@ Objects_Control *_Objects_Allocate_by_index(
* + The pointer arithmetic is probably too expensive.
* + etc.
*/
-
+
the_object = (Objects_Control *) _Addresses_Add_offset(
information->object_blocks[ 0 ],
(sizeof_control * (index - 1))
);
_Chain_Extract( &the_object->Node );
-
+
return the_object;
}