From a92c8a4ddff3eae15d1d7c51101444a342ed2130 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 3 Apr 2026 17:07:41 +0200 Subject: [PATCH] correction double.c --- Chains_across_the_Island/Fundamentals/double/double.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chains_across_the_Island/Fundamentals/double/double.c b/Chains_across_the_Island/Fundamentals/double/double.c index 1b60a19..6a14ebc 100644 --- a/Chains_across_the_Island/Fundamentals/double/double.c +++ b/Chains_across_the_Island/Fundamentals/double/double.c @@ -32,7 +32,7 @@ int dlist_insert(struct dlist **l, size_t index, int e) new_node->prev = NULL; new_node->next = *l; new_node->data = e; - new_node->next->prev = new_node; + //new_node->next->prev = new_node; //dlist_append(*l, e); return 0;