summaryrefslogtreecommitdiffstats
path: root/test/cache_image.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 23:39:48 (GMT)
committerGitHub <noreply@github.com>2023-07-27 23:39:48 (GMT)
commit38e234b620595f3eac5ff68dd71d4b29cfd46b18 (patch)
tree905658547118279ea17cab8ffac2820d865b3b92 /test/cache_image.c
parente286b6e706b28330a64115c13c11ae832536b857 (diff)
downloadhdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.zip
hdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.tar.gz
hdf5-38e234b620595f3eac5ff68dd71d4b29cfd46b18.tar.bz2
Convert H5F_addr calls to H5_addr (#3297)
Diffstat (limited to 'test/cache_image.c')
-rw-r--r--test/cache_image.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/cache_image.c b/test/cache_image.c
index 70da799..ccf516d 100644
--- a/test/cache_image.c
+++ b/test/cache_image.c
@@ -7142,9 +7142,9 @@ get_free_sections_test(hbool_t single_file_vfd)
/* file_ptr->shared->first_alloc_dealloc is set to FALSE if the
* file is opened R/O.
*/
- if ((!H5F_addr_defined(file_ptr->shared->eoa_fsm_fsalloc)) ||
- (!H5F_addr_defined(file_ptr->shared->cache->image_addr)) ||
- (H5F_addr_gt(file_ptr->shared->eoa_fsm_fsalloc, file_ptr->shared->cache->image_addr))) {
+ if ((!H5_addr_defined(file_ptr->shared->eoa_fsm_fsalloc)) ||
+ (!H5_addr_defined(file_ptr->shared->cache->image_addr)) ||
+ (H5_addr_gt(file_ptr->shared->eoa_fsm_fsalloc, file_ptr->shared->cache->image_addr))) {
pass = FALSE;
failure_mssg = "unexpected cache image status (1).\n";
@@ -7247,9 +7247,9 @@ get_free_sections_test(hbool_t single_file_vfd)
*/
if (pass) {
- if ((!H5F_addr_defined(file_ptr->shared->eoa_fsm_fsalloc)) ||
- (!H5F_addr_defined(file_ptr->shared->cache->image_addr)) ||
- (H5F_addr_gt(file_ptr->shared->eoa_fsm_fsalloc, file_ptr->shared->cache->image_addr))) {
+ if ((!H5_addr_defined(file_ptr->shared->eoa_fsm_fsalloc)) ||
+ (!H5_addr_defined(file_ptr->shared->cache->image_addr)) ||
+ (H5_addr_gt(file_ptr->shared->eoa_fsm_fsalloc, file_ptr->shared->cache->image_addr))) {
pass = FALSE;
failure_mssg = "unexpected cache image status (2).\n";