Fix the name of the function symbol

This commit is contained in:
Nick Chambers 2022-11-17 01:25:32 -06:00
parent 7c920e1f1f
commit a2a41a80e5
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ struct ordinary_node *ordinary_list_add(struct ordinary_list *list, void *val) {
return node;
}
void standard_list_mov(struct standard_list *list, struct standard_node *node) {
void ordinary_list_mov(struct standard_list *list, struct standard_node *node) {
struct ordinary_node *prev = node->prev;
struct ordinary_node *next = node->next;