1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

remove an unused function

(This used to be ctdb commit 38a26d1f3709fbce551bc3a7af8bacd0ff465bca)
This commit is contained in:
Ronnie Sahlberg 2007-08-09 07:59:50 +10:00
parent 5332b61c4f
commit 18deb7e015

View File

@ -276,16 +276,6 @@ trbt_sibling(trbt_node_t *node)
}
}
static inline trbt_node_t *
trbt_sibline(trbt_node_t *node)
{
if (node==node->parent->left) {
return node->parent->right;
} else {
return node->parent->left;
}
}
static inline void
trbt_delete_case6(trbt_node_t *node)
{