summaryrefslogtreecommitdiffstats
path: root/test/accum.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-19 23:00:05 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-19 23:00:05 (GMT)
commitdf36318b5f338d469db0086151d86601236e922a (patch)
treeb6c67dbf967f026ab0202baa043e2eb6fec389c7 /test/accum.c
parent85a56a9c4f9629bb92b4b16a1dada30ae30b5b21 (diff)
downloadhdf5-df36318b5f338d469db0086151d86601236e922a.zip
hdf5-df36318b5f338d469db0086151d86601236e922a.tar.gz
hdf5-df36318b5f338d469db0086151d86601236e922a.tar.bz2
Rest of changes for 'top' file pointer to 'shared' file pointer for H5F__accum
routines.
Diffstat (limited to 'test/accum.c')
-rw-r--r--test/accum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/accum.c b/test/accum.c
index a5ef9e6..91acf0f 100644
--- a/test/accum.c
+++ b/test/accum.c
@@ -66,7 +66,7 @@ void accum_printf(const H5F_t *f);
/* Private Test H5Faccum Function Wrappers */
#define accum_write(a,s,b) H5F_block_write(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), (b))
#define accum_read(a,s,b) H5F_block_read(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), (b))
-#define accum_free(f,a,s) H5F__accum_free(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (hsize_t)(s))
+#define accum_free(f,a,s) H5F__accum_free(f->shared, H5FD_MEM_DEFAULT, (haddr_t)(a), (hsize_t)(s))
#define accum_flush(f) H5F__accum_flush(f->shared)
#define accum_reset(f) H5F__accum_reset(f->shared, TRUE)