Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2449 → Rev 2450

/branches/rcu/kernel/generic/src/adt/avl.c
690,7 → 690,7
}
 
 
/** Delete node from AVL tree with the smallest key and set base of tree to that key.
/** Delete node from AVL tree with the smallest key.
*
* @param t AVL tree structure.
*/
716,10 → 716,5
key = node->key;
avltree_delete(t,node);
 
/*
* Change base to the key of deleted node.
*/
t->base = key;
 
return true;
}