spacings
This commit is contained in:
parent
a2bfa2361d
commit
c2aa8c3619
1 changed files with 1 additions and 1 deletions
2
list.c
2
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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue