summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/chain.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/chain.c')
-rw-r--r--cpukit/score/src/chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/chain.c b/cpukit/score/src/chain.c
index 4e280fecd7..ea064c6b60 100644
--- a/cpukit/score/src/chain.c
+++ b/cpukit/score/src/chain.c
@@ -50,7 +50,7 @@ void _Chain_Initialize(
count = number_nodes;
current = _Chain_Head( the_chain );
the_chain->permanent_null = NULL;
- next = (Chain_Node *)starting_address;
+ next = starting_address;
while ( count-- ) {
current->next = next;
next->previous = current;