summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-02-26 02:11:31 +0000
committerAndrew Tridgell <tridge@samba.org>2004-02-26 02:11:31 +0000
commitd2d653a1a6db9d0407e99affb317a0045e56168a (patch)
tree9d485c0182bb56a01398c1f3e290164016c8e8d1 /source/include
parent5646b6c989c6f13fe1149cf24bf8af87fa95b759 (diff)
downloadsamba-d2d653a1a6db9d0407e99affb317a0045e56168a.tar.gz
samba-d2d653a1a6db9d0407e99affb317a0045e56168a.tar.xz
samba-d2d653a1a6db9d0407e99affb317a0045e56168a.zip
fixed compilation with --enable-dmalloc
the macro redefinition of free() means we cannot have a structure element called "free"
Diffstat (limited to 'source/include')
-rw-r--r--source/include/adt_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/adt_tree.h b/source/include/adt_tree.h
index b1bf7ad85dc..12e2ea5cc53 100644
--- a/source/include/adt_tree.h
+++ b/source/include/adt_tree.h
@@ -32,7 +32,7 @@ typedef struct _tree_node {
typedef struct _tree_root {
TREE_NODE *root;
int (*compare)(void* x, void *y);
- void (*free)(void *p);
+ void (*free_func)(void *p);
} SORTED_TREE;
#endif