Fix set (extra) find ret value

This commit is contained in:
Gregory Lirent 2022-06-08 10:53:52 +03:00
parent bd9563dbf4
commit d222d9420d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ _Bool libcdsb_vset_find(val_t* x, set_t* s, const void* v, vtype t, _Bool cut) {
c = (cmp < 0) ? c->right : c->left;
}
return rbnode_empty;
return false;
}