From 0f6c00b6aef6ca824696a77d427248d0fa1aad04 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 5 Feb 2016 12:02:54 +0100 Subject: [PATCH] tevent: remove unneeded type argument from DLIST_CONCATENATE() Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison --- lib/tevent/tevent_util.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); \