changes for actubent - not compiling!

FossilOrigin-Name: adf99bdc2ee784a4acf4066b90c33fb1e6124e8c49c255d3fd5011bb33852d52
This commit is contained in:
7u83@mail.ru
2018-03-03 16:42:28 +00:00
parent ca22c44590
commit d2d1be3346
136 changed files with 585 additions and 403 deletions

View File

@ -22,11 +22,11 @@
#include "mavl.h"
struct mavlnode * mavl_get_node(struct mavl *t ,void *data)
struct mavlnode * mavl_get_node(struct mavl *t ,union mavldata *data)
{
struct mavlnode *n = t->root;
while(n){
int rc=t->cmp(data,n->data);
int rc=t->cmp(data,&n->data);
if (rc==0)
return n;
if (rc<0)