tevent: remove unneeded type argument from DLIST_CONCATENATE()
authorMichael Adam <obnox@samba.org>
Fri, 5 Feb 2016 11:02:54 +0000 (12:02 +0100)
committerJeremy Allison <jra@samba.org>
Sat, 6 Feb 2016 20:48:18 +0000 (21:48 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
lib/tevent/tevent_util.h

index 04cd09e42d89e0b75c24886b942da2bf7f7e0f69..b60f5b5279e5157d8a05259e16421cd47209cfb1 100644 (file)
@@ -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); \