From 0d98f51e7dbde4a40c0039910d43ad378eaefa83 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Thu, 21 Dec 2017 14:03:18 +0100 Subject: Rename sp_node_t to sp_list_node Since we now have sp_list and sp_tree, it makes sense to specify that nodes are only for lists. --- src/sp_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sp_config.c') diff --git a/src/sp_config.c b/src/sp_config.c index bed81bc..1877859 100644 --- a/src/sp_config.c +++ b/src/sp_config.c @@ -183,8 +183,8 @@ int sp_parse_config(const char *conf_file) { return SUCCESS; } -void sp_disabled_function_list_free(sp_node_t* list) { - sp_node_t* cursor = list; +void sp_disabled_function_list_free(sp_list_node* list) { + sp_list_node* cursor = list; while(cursor) { sp_disabled_function* df = cursor->data; if (df && df->functions_list) -- cgit v1.3