diff options
author | David Young <dyoung@hdfgroup.org> | 2020-02-03 19:16:05 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-02-03 19:16:05 (GMT) |
commit | 64f1ef1fda4dddb85ff16166051c7df3777254d7 (patch) | |
tree | 8221e1da812bc048734283d22c86b9b74277e5ff /src/H5Fvfd_swmr.c | |
parent | 005bd89ad5fbe958e946ff4381bc9f97babc1896 (diff) | |
download | hdf5-64f1ef1fda4dddb85ff16166051c7df3777254d7.zip hdf5-64f1ef1fda4dddb85ff16166051c7df3777254d7.tar.gz hdf5-64f1ef1fda4dddb85ff16166051c7df3777254d7.tar.bz2 |
Make the first argument to H5PB_vfd_swmr__update_index() and H5F_t instead of
an H5F_shared_t because the new routine that will relocate the index (which
will be in a future commit) has to pass an H5F_t to the filespace allocator.
Diffstat (limited to 'src/H5Fvfd_swmr.c')
-rw-r--r-- | src/H5Fvfd_swmr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c index e7b87d3..1eef792 100644 --- a/src/H5Fvfd_swmr.c +++ b/src/H5Fvfd_swmr.c @@ -877,7 +877,7 @@ H5F_vfd_swmr_writer_end_of_tick(H5F_t *f) * the metadata file index, adding or modifying entries as * appropriate. */ - if ( H5PB_vfd_swmr__update_index(f->shared, &idx_entries_added, + if ( H5PB_vfd_swmr__update_index(f, &idx_entries_added, &idx_entries_modified, &idx_ent_not_in_tl, &idx_ent_not_in_tl_flushed) < 0 ) |