summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-05-19 20:00:37 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:37:22 (GMT)
commit9eb33fe81254cb1f4a6beed98adcb485a4a4ab36 (patch)
tree83b0ba6b5d35882d9b8c0eda476a9993aed6fad3 /src/H5AC.c
parent95c57f07bce48e0d7f9e16b210e61c3d2dc3b11d (diff)
downloadhdf5-9eb33fe81254cb1f4a6beed98adcb485a4a4ab36.zip
hdf5-9eb33fe81254cb1f4a6beed98adcb485a4a4ab36.tar.gz
hdf5-9eb33fe81254cb1f4a6beed98adcb485a4a4ab36.tar.bz2
Reduce diffs with `develop`, where `H5C_move_entry` takes an `H5C_t *`
argument, first, not `H5F_t *`.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 7977d0e..681ccf0 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -1125,7 +1125,7 @@ H5AC_move_entry(H5F_t *f, const H5AC_class_t *type, haddr_t old_addr, haddr_t ne
HGOTO_ERROR(H5E_CACHE, H5E_CANTUNPROTECT, FAIL, "can't log moved entry")
#endif /* H5_HAVE_PARALLEL */
- if(H5C_move_entry(f, type, old_addr, new_addr) < 0)
+ if(H5C_move_entry(f->shared->cache, type, old_addr, new_addr) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_CANTMOVE, FAIL, "H5C_move_entry() failed")
#ifdef H5_HAVE_PARALLEL