From c2aa8c36199ade719268110e5c7b8bc2333c3aad Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Sat, 16 Apr 2022 17:01:33 +0300 Subject: [PATCH] spacings --- list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list.c b/list.c index a62ee7d..6076cb9 100644 --- a/list.c +++ b/list.c @@ -18,7 +18,7 @@ void list_clear(list_t* list) do { next = node->next; cu_free(node); - } while(node = next); + } while (node = next); } list->first = NULL; list->last = NULL;