summaryrefslogtreecommitdiff
path: root/libddekit/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'libddekit/list.c')
-rw-r--r--libddekit/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libddekit/list.c b/libddekit/list.c
index 992ea9ad..4f163584 100644
--- a/libddekit/list.c
+++ b/libddekit/list.c
@@ -48,7 +48,7 @@ struct list *remove_entry_head (struct list *head)
{
struct list *entry = head->next;
- if (EMPTY_ENTRY (entry))
+ if (EMPTY_LIST (entry))
return NULL;
remove_entry (entry);
@@ -59,7 +59,7 @@ struct list *remove_entry_end (struct list *head)
{
struct list *entry = head->prev;
- if (EMPTY_ENTRY (entry))
+ if (EMPTY_LIST (entry))
return NULL;
remove_entry (entry);