]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ldb: remove unneeded argument type from DLIST_CONCATENATE()
authorMichael Adam <obnox@samba.org>
Fri, 5 Feb 2016 11:02:26 +0000 (12:02 +0100)
committerJeremy Allison <jra@samba.org>
Sat, 6 Feb 2016 20:48:17 +0000 (21:48 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
lib/ldb/include/dlinklist.h

index 34d4db93bd0634a56d503a739cce4e7b074ce28c..1f5cbd06966a00aa14ab0b98693669eae4e6f3b3 100644 (file)
@@ -164,9 +164,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); \