summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/rbtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/rbtree.c')
-rw-r--r--cpukit/score/src/rbtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/rbtree.c b/cpukit/score/src/rbtree.c
index 59dfd760c2..4ec0ad627e 100644
--- a/cpukit/score/src/rbtree.c
+++ b/cpukit/score/src/rbtree.c
@@ -43,7 +43,7 @@ void _RBTree_Initialize(
count = number_nodes;
next = starting_address;
while ( count-- ) {
- _RBTree_Insert_unprotected(the_rbtree, next);
+ _RBTree_Insert(the_rbtree, next);
next = (RBTree_Node *)
_Addresses_Add_offset( (void *) next, node_size );
}