diff options
| author | jvoisin | 2017-12-21 14:03:18 +0100 |
|---|---|---|
| committer | jvoisin | 2017-12-21 14:03:18 +0100 |
| commit | 0d98f51e7dbde4a40c0039910d43ad378eaefa83 (patch) | |
| tree | 78749747bc46c80f85bc2c3cdfb629b331d200f1 /src/sp_config.c | |
| parent | f91cf7390c060986e51b77990f4e472165b97dad (diff) | |
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.
Diffstat (limited to 'src/sp_config.c')
| -rw-r--r-- | src/sp_config.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { | |||
| 183 | return SUCCESS; | 183 | return SUCCESS; |
| 184 | } | 184 | } |
| 185 | 185 | ||
| 186 | void sp_disabled_function_list_free(sp_node_t* list) { | 186 | void sp_disabled_function_list_free(sp_list_node* list) { |
| 187 | sp_node_t* cursor = list; | 187 | sp_list_node* cursor = list; |
| 188 | while(cursor) { | 188 | while(cursor) { |
| 189 | sp_disabled_function* df = cursor->data; | 189 | sp_disabled_function* df = cursor->data; |
| 190 | if (df && df->functions_list) | 190 | if (df && df->functions_list) |
