summaryrefslogtreecommitdiffstats
path: root/src/H5Oflush.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-21 18:00:14 (GMT)
committerGitHub <noreply@github.com>2023-06-21 18:00:14 (GMT)
commitef24087b1712260d970ec78731cdfbdde8e141e9 (patch)
tree7f6d907a14cd0c666904d5eeaefd87bb58eee5d0 /src/H5Oflush.c
parent56513d9df75de92bb96f24e9d0e5e30dce54d065 (diff)
downloadhdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.zip
hdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.tar.gz
hdf5-ef24087b1712260d970ec78731cdfbdde8e141e9.tar.bz2
Remove H5F_evict_tagged_metadata() (#3165)
The rest of the library just calls H5AC_evict_tagged_metadata() directly.
Diffstat (limited to 'src/H5Oflush.c')
-rw-r--r--src/H5Oflush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oflush.c b/src/H5Oflush.c
index d7eb68c..aefa098 100644
--- a/src/H5Oflush.c
+++ b/src/H5Oflush.c
@@ -335,7 +335,7 @@ H5O__refresh_metadata_close(H5O_loc_t *oloc, H5G_loc_t *obj_loc, hid_t oid)
HGOTO_ERROR(H5E_OHDR, H5E_CANTFLUSH, FAIL, "unable to flush tagged metadata")
/* Evict the object's tagged metadata */
- if (H5F_evict_tagged_metadata(file, tag) < 0)
+ if (H5AC_evict_tagged_metadata(file, tag, TRUE) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTFLUSH, FAIL, "unable to evict metadata")
/* Re-cork object with tag */