From a2a41a80e5bbf7324c3b7db7b3f67c125a2c8541 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Thu, 17 Nov 2022 01:25:32 -0600 Subject: [PATCH] Fix the name of the function symbol --- src/ordinary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ordinary.c b/src/ordinary.c index f815c35..9027c7c 100644 --- a/src/ordinary.c +++ b/src/ordinary.c @@ -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;