Reversed buggy patch.

This commit is contained in:
Pavel Machek 1998-07-20 20:05:40 +00:00
parent c25e90efed
commit a872b0f7da

View file

@ -20,7 +20,7 @@ typedef struct list { /* In fact two overlayed nodes */
#define NODE (node *)
#define HEAD(list) ((void *)((list).head))
#define TAIL(list) ((void *)((list).tail))
#define WALK_LIST(n,list) for((NODE (n))=HEAD(list);(NODE (n))->next; \
#define WALK_LIST(n,list) for((n)=HEAD(list);(NODE (n))->next; \
n=(void *)((NODE (n))->next))
#define WALK_LIST_DELSAFE(n,ne,list) \
if ( ((NODE n) = HEAD(list)) ) \