mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
tevent: remove unneeded type argument from DLIST_CONCATENATE()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
1441824fe6
commit
0f6c00b6ae
@ -160,9 +160,8 @@ do { \
|
||||
/*
|
||||
concatenate two lists - putting all elements of the 2nd list at the
|
||||
end of the first list.
|
||||
Note that 'type' is ignored
|
||||
*/
|
||||
#define DLIST_CONCATENATE(list1, list2, type) \
|
||||
#define DLIST_CONCATENATE(list1, list2) \
|
||||
do { \
|
||||
if (!(list1)) { \
|
||||
(list1) = (list2); \
|
||||
|
Loading…
Reference in New Issue
Block a user