summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-03-15 16:12:52 +0000
committerGerald Carter <jerry@samba.org>2004-03-15 16:12:52 +0000
commit11f6251b771e59020af02599ea419e7d7ff682de (patch)
tree3fb38a5d70e45cf36d39fb4690a94b0e9b747833 /source3/include
parent12fb2d73050a911c7a86749be3639b2c1da84059 (diff)
downloadsamba-11f6251b771e59020af02599ea419e7d7ff682de.tar.gz
samba-11f6251b771e59020af02599ea419e7d7ff682de.tar.bz2
samba-11f6251b771e59020af02599ea419e7d7ff682de.zip
sync small fixes from 3.0 and fix compiler warning in priv code
(This used to be commit c640594c9362dca625a8fa51b453dafe1f3e980d)
Diffstat (limited to 'source3/include')
-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