summaryrefslogtreecommitdiff
path: root/alf/alflist.h
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 01:49:11 +0200
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 01:49:11 +0200
commit9251e89359ce46d08c0924b09d48fedbdf2c95fb (patch)
tree4adb0418223a07834f8e55a457c07ceda1bf29b3 /alf/alflist.h
parent8d31086aed4aa91232cbaad9cf88d720e6329bcf (diff)
ALFApplication and multiple toplevels support
Diffstat (limited to 'alf/alflist.h')
-rw-r--r--alf/alflist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alf/alflist.h b/alf/alflist.h
index 7b4ca66..8bbfda8 100644
--- a/alf/alflist.h
+++ b/alf/alflist.h
@@ -38,8 +38,8 @@ ALF_ListRemove(ALFListHeader *member)
{
member->prev->next = member->next;
member->next->prev = member->prev;
- member->next = NULL;
- member->prev = NULL;
+ member->next = member;
+ member->prev = member;
}
static inline void