new mavl is working now
FossilOrigin-Name: 65a4eefffea57509c0d7fd573e53b15bf4a730ce297b7db182aaac796ea92448
This commit is contained in:
@ -5,10 +5,10 @@
|
||||
* @param i AVL Iterator
|
||||
* @return element or NULL if not found.
|
||||
*/
|
||||
void * mavliter_get(mavliter_t *i){
|
||||
if(!i->cur)
|
||||
void * mavliter_get(mavliter_t *i)
|
||||
{
|
||||
if (!i->cur)
|
||||
return NULL;
|
||||
/*return &i->cur->data; */
|
||||
|
||||
return mavlnode_dataptr(i->cur);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user