diff -r e1f3248576bc -r e1e3b768ae8b src/ucx/avl.h --- a/src/ucx/avl.h Mon May 14 18:19:16 2018 +0200 +++ b/src/ucx/avl.h Mon May 14 18:20:56 2018 +0200 @@ -166,11 +166,12 @@ /** * Macro for initializing a new UcxAVLTree with the default allocator and a - * ucx_ptrcmp() compare function. + * ucx_cmp_ptr() compare function. * * @return a new default UcxAVLTree object */ -#define ucx_avl_default_new() ucx_avl_new_a(ucx_ptrcmp, ucx_default_allocator()) +#define ucx_avl_default_new() \ + ucx_avl_new_a(ucx_cmp_ptr, ucx_default_allocator()) /** * Gets the node from the tree, that is associated with the specified key.