From e9fb256ca51b68e387f7ad536280ad51c6f98047 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 5 Oct 2013 21:40:04 +0200 Subject: [PATCH] vlist: constify key argument to vlist_add Signed-off-by: Felix Fietkau --- vlist.c | 2 +- vlist.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vlist.c b/vlist.c index b2de7d6..d497c63 100644 --- 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 1dfc92c..9e188e2 100644 --- 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); -- 2.30.2