summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-06-04 23:54:16 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-06-04 23:54:16 (GMT)
commit47bf6a39bed9058d2f1e67b06287a05755014234 (patch)
tree96750e0ea74eed320bc304a36c1b87cac5b6e286 /test
parentdffe5efbb09930cc7daa26f7fbf311558491bb95 (diff)
downloadhdf5-47bf6a39bed9058d2f1e67b06287a05755014234.zip
hdf5-47bf6a39bed9058d2f1e67b06287a05755014234.tar.gz
hdf5-47bf6a39bed9058d2f1e67b06287a05755014234.tar.bz2
H5PB and H5Faccum normalization with develop.
Diffstat (limited to 'test')
-rw-r--r--test/accum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/accum.c b/test/accum.c
index fb07580..8006112 100644
--- a/test/accum.c
+++ b/test/accum.c
@@ -62,9 +62,9 @@ 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_flush(f) H5F__accum_flush(f)
-#define accum_reset(f) H5F__accum_reset(f, TRUE)
+#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)
/* ================= */
/* Main Test Routine */