Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/avl.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-03-21 01:55:45 +0400
committerFelix Fietkau <nbd@openwrt.org>2014-03-21 01:55:45 +0400
commitbbdfee8182c5c8d3704f343c6402bd68dd05071e (patch)
tree8953e2b61673bfcb063c340b9a14c5b6f1b89a0e /avl.h
parent3edc29942c43a8178019c4821c1ee9a11d26ba99 (diff)
list_compat.h: remove list_entity compat define
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'avl.h')
-rw-r--r--avl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/avl.h b/avl.h
index 3a79e3a..2591de3 100644
--- a/avl.h
+++ b/avl.h
@@ -62,7 +62,7 @@ struct avl_node {
* this must be the first element of an avl_node to
* make casting for lists easier
*/
- struct list_entity list;
+ struct list_head list;
/**
* Pointer to parent node in tree, NULL if root node
@@ -113,7 +113,7 @@ struct avl_tree {
* Head of linked list node for supporting easy iteration
* and multiple elments with the same key.
*/
- struct list_entity list_head;
+ struct list_head list_head;
/**
* pointer to the root node of the avl tree, NULL if tree is empty