aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/list.c
diff options
context:
space:
mode:
authorMarvin Borner2021-05-24 18:50:55 +0200
committerMarvin Borner2021-05-24 19:05:59 +0200
commit91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (patch)
tree4006f8b37c2e70ddceb6fbb70dd2c690c5cf6035 /libs/libc/list.c
parenta0a1b1318dc886c72eaf60792dbb40f1ea3eeb97 (diff)
Added more tests and fixed dumb bugs
typical
Diffstat (limited to 'libs/libc/list.c')
-rw-r--r--libs/libc/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/list.c b/libs/libc/list.c
index 3f37478..a477285 100644
--- a/libs/libc/list.c
+++ b/libs/libc/list.c
@@ -61,7 +61,7 @@ NONNULL static struct node *list_add_node(struct list *list, struct node *node)
struct node *list_last(struct list *list)
{
- if (list->head)
+ if (!list->head)
return NULL;
struct node *iterator = list->head;