From: Michael Adam Date: Fri, 5 Feb 2016 11:02:54 +0000 (+0100) Subject: tevent: remove unneeded type argument from DLIST_CONCATENATE() X-Git-Tag: tevent-0.9.27~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f6c00b6aef6ca824696a77d427248d0fa1aad04;p=thirdparty%2Fsamba.git tevent: remove unneeded type argument from DLIST_CONCATENATE() Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison --- diff --git a/lib/tevent/tevent_util.h b/lib/tevent/tevent_util.h index 04cd09e42d8..b60f5b5279e 100644 --- a/lib/tevent/tevent_util.h +++ b/lib/tevent/tevent_util.h @@ -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); \