vlist: constify key argument to vlist_add
authorFelix Fietkau <nbd@openwrt.org>
Sat, 5 Oct 2013 19:40:04 +0000 (21:40 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 5 Oct 2013 19:40:04 +0000 (21:40 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
vlist.c
vlist.h

diff --git a/vlist.c b/vlist.c
index b2de7d64c389e91778082d045bb9ae30a9af7048..d497c63284ead3cb3d7ec9d750b0bcb93a1fce16 100644 (file)
--- a/vlist.c
+++ b/vlist.c
@@ -33,7 +33,7 @@ vlist_delete(struct vlist_tree *tree, struct vlist_node *node)
 }
 
 void
-vlist_add(struct vlist_tree *tree, struct vlist_node *node, void *key)
+vlist_add(struct vlist_tree *tree, struct vlist_node *node, const void *key)
 {
        struct vlist_node *old_node = NULL;
        struct avl_node *anode;
diff --git a/vlist.h b/vlist.h
index 1dfc92c43ec4aa33ec32548f327657341562dda0..9e188e2ce6ce823db3d8b3e615db8c6d3076e89c 100644 (file)
--- a/vlist.h
+++ b/vlist.h
@@ -51,7 +51,7 @@ static inline void vlist_update(struct vlist_tree *tree)
        tree->version++;
 }
 
-void vlist_add(struct vlist_tree *tree, struct vlist_node *node, void *key);
+void vlist_add(struct vlist_tree *tree, struct vlist_node *node, const void *key);
 void vlist_delete(struct vlist_tree *tree, struct vlist_node *node);
 void vlist_flush(struct vlist_tree *tree);
 void vlist_flush_all(struct vlist_tree *tree);