summaryrefslogtreecommitdiff
path: root/lib/ldb
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2016-02-05 12:02:26 +0100
committerJeremy Allison <jra@samba.org>2016-02-06 21:48:17 +0100
commit1441824fe6a797e53fb182b00017a0f927ec42bf (patch)
tree79ed0682906e4d9af1ae9ad6695c0cbfb9d9211e /lib/ldb
parentbe2a341d43158999667de90f7c84b6c21d6c5dc6 (diff)
downloadsamba-1441824fe6a797e53fb182b00017a0f927ec42bf.tar.gz
ldb: remove unneeded argument type from DLIST_CONCATENATE()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/ldb')
-rw-r--r--lib/ldb/include/dlinklist.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ldb/include/dlinklist.h b/lib/ldb/include/dlinklist.h
index 34d4db93bd0..1f5cbd06966 100644
--- a/lib/ldb/include/dlinklist.h
+++ b/lib/ldb/include/dlinklist.h
@@ -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); \