diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-07 07:14:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-07 07:14:10 (GMT) |
commit | 9504d3f337c94c1a2d00bc5b05561e6ed1cee798 (patch) | |
tree | 4778cce3b3f9362c7e467179b06a469d16d2e635 /test/evict_on_close.c | |
parent | 323ae135906c4a0adb11ad2ee87b4a9814035ac3 (diff) | |
download | hdf5-9504d3f337c94c1a2d00bc5b05561e6ed1cee798.zip hdf5-9504d3f337c94c1a2d00bc5b05561e6ed1cee798.tar.gz hdf5-9504d3f337c94c1a2d00bc5b05561e6ed1cee798.tar.bz2 |
Switch to new, more scalable, metadata cache entry tagging.
Diffstat (limited to 'test/evict_on_close.c')
-rw-r--r-- | test/evict_on_close.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/evict_on_close.c b/test/evict_on_close.c index 3124371..7016fde 100644 --- a/test/evict_on_close.c +++ b/test/evict_on_close.c @@ -100,7 +100,7 @@ verify_tag_not_in_cache(H5F_t *f, haddr_t tag) entry_ptr = cache_ptr->index[i]; while(entry_ptr != NULL) { - if(tag == entry_ptr->tag) + if(tag == entry_ptr->tag_info->tag) return TRUE; else entry_ptr = entry_ptr->ht_next; |