diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-05-19 14:50:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-05-19 14:50:01 (GMT) |
commit | 670770900a0f44915650290ce6d51f7161fd5982 (patch) | |
tree | 9f05af33bb2fa26d53f31807b88be79a893b6e8a | |
parent | 7d6aeee7d992b4398ddfc14b32186f6fb98efb12 (diff) | |
download | hdf5-670770900a0f44915650290ce6d51f7161fd5982.zip hdf5-670770900a0f44915650290ce6d51f7161fd5982.tar.gz hdf5-670770900a0f44915650290ce6d51f7161fd5982.tar.bz2 |
[svn-r2273] Used updated data structure names...
-rw-r--r-- | test/ttbbt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ttbbt.c b/test/ttbbt.c index c8006e0..b839b6f 100644 --- a/test/ttbbt.c +++ b/test/ttbbt.c @@ -75,7 +75,7 @@ test_tbbt(void) int ins_arr[MAX_TEST_SIZE]; int rem_arr[MAX_TEST_SIZE]; intn t; - TBBT_TREE *tree; + H5TB_TREE *tree; void * *r; t = (intn)time(NULL); @@ -133,7 +133,7 @@ test_tbbt(void) key = rem_arr[i]; r = (void * *) H5TB_dfind(tree, (void *) &key, NULL); MESSAGE(9, ("removing %d\n", (int) key)); - H5TB_rem((TBBT_NODE **) tree, (TBBT_NODE *) r, NULL); + H5TB_rem((H5TB_NODE **) tree, (H5TB_NODE *) r, NULL); #ifdef H5TB_DEBUG if(Verbosity>9) H5TB_dump(tree, -1); |