From 79d5739893dca1272b60d6566ccb728c73c4240e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 26 Feb 2004 02:11:31 +0000 Subject: 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) --- source3/include/adt_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/adt_tree.h') 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 -- cgit