summaryrefslogtreecommitdiff
path: root/source3/include/adt_tree.h
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
commit79d5739893dca1272b60d6566ccb728c73c4240e (patch)
treebafa61c1d0a3c3753d4caa569b089df8bbdeaa8d /source3/include/adt_tree.h
parent863c784ef477cbdad3dfb5480b41be4b2360b758 (diff)
downloadsamba-79d5739893dca1272b60d6566ccb728c73c4240e.tar.gz
samba-79d5739893dca1272b60d6566ccb728c73c4240e.tar.bz2
samba-79d5739893dca1272b60d6566ccb728c73c4240e.zip
fixed compilation with --enable-dmalloc
the macro redefinition of free() means we cannot have a structure element called "free" (This used to be commit d2d653a1a6db9d0407e99affb317a0045e56168a)
Diffstat (limited to 'source3/include/adt_tree.h')
-rw-r--r--source3/include/adt_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/adt_tree.h b/source3/include/adt_tree.h
index b1bf7ad85d..12e2ea5cc5 100644
--- a/source3/include/adt_tree.h
+++ b/source3/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