Fix for botched cherry-pick commit 60fb230.

This commit is contained in:
Guus Sliepen 2016-02-28 16:38:49 +01:00
parent 1ceea259c3
commit bf50b3502a

View file

@ -148,9 +148,9 @@ bool add_edge_h(connection_t *c, const char *request) {
e->address = address; e->address = address;
} }
if(e->weight != weight) { if(e->weight != weight) {
avl_node_t *node = avl_unlink(edge_weight_tree, e); splay_node_t *node = splay_unlink(edge_weight_tree, e);
e->weight = weight; e->weight = weight;
avl_insert_node(edge_weight_tree, node); splay_insert_node(edge_weight_tree, node);
} }
goto done; goto done;