diff options
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/dlinklist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/util/dlinklist.h b/lib/util/dlinklist.h index 1a4ebb6fa0..693b43dd27 100644 --- a/lib/util/dlinklist.h +++ b/lib/util/dlinklist.h @@ -87,11 +87,11 @@ do { \ }\ } while (0) -/* demote an element to the end of the list, needs a tmp pointer */ -#define DLIST_DEMOTE(list, p, tmp) \ +/* demote an element to the end of the list, needs the entry type */ +#define DLIST_DEMOTE(list, p, type) \ do { \ DLIST_REMOVE(list, p); \ - DLIST_ADD_END(list, p, tmp); \ + DLIST_ADD_END(list, p, type); \ } while (0) /* concatenate two lists - putting all elements of the 2nd list at the |