summaryrefslogtreecommitdiffstats
path: root/src/H5Clog.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2019-02-04 03:34:25 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2019-02-04 03:34:25 (GMT)
commitd2624dae03502da447fb0ece36667b89e4a5fb96 (patch)
tree1095ded01d82e20192c47c87f227f79faa8b5f07 /src/H5Clog.c
parentdddc940bdf4a0ae236b7096245a436aead30b55d (diff)
parent30df67700cc95f1c08a0a2bc2b4cf38489f70a51 (diff)
downloadhdf5-d2624dae03502da447fb0ece36667b89e4a5fb96.zip
hdf5-d2624dae03502da447fb0ece36667b89e4a5fb96.tar.gz
hdf5-d2624dae03502da447fb0ece36667b89e4a5fb96.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into develop
Diffstat (limited to 'src/H5Clog.c')
-rw-r--r--src/H5Clog.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Clog.c b/src/H5Clog.c
index 0ae7f13..cf9b7e8 100644
--- a/src/H5Clog.c
+++ b/src/H5Clog.c
@@ -887,7 +887,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5C_log_write_unprotect_entry_msg(H5C_t *cache, const H5C_cache_entry_t *entry,
+H5C_log_write_unprotect_entry_msg(H5C_t *cache, haddr_t address,
int type_id, unsigned flags, herr_t fxn_ret_value)
{
herr_t ret_value = SUCCEED;
@@ -898,9 +898,8 @@ H5C_log_write_unprotect_entry_msg(H5C_t *cache, const H5C_cache_entry_t *entry,
HDassert(cache);
/* Write a log message */
- HDassert(entry);
if(cache->log_info->cls->write_unprotect_entry_log_msg)
- if(cache->log_info->cls->write_unprotect_entry_log_msg(cache->log_info->udata, entry, type_id, flags, fxn_ret_value) < 0)
+ if(cache->log_info->cls->write_unprotect_entry_log_msg(cache->log_info->udata, address, type_id, flags, fxn_ret_value) < 0)
HGOTO_ERROR(H5E_CACHE, H5E_LOGGING, FAIL, "log-specific unprotect entry call failed")
done: