summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Smith <jake.smith@hdfgroup.org>2020-03-01 05:39:00 (GMT)
committerJake Smith <jake.smith@hdfgroup.org>2020-03-01 05:39:00 (GMT)
commita01ac97ba509e51905b816e8a29b5d0b2bc8be87 (patch)
tree4994ed7dbc601f42df64e8e7b834415a3bf0d68e
parent6e565dd271ac9ab105e38a8e2f33123882ced494 (diff)
parent2d9a81878d05732725f96d7d9b20ada8dfd2a146 (diff)
downloadhdf5-a01ac97ba509e51905b816e8a29b5d0b2bc8be87.zip
hdf5-a01ac97ba509e51905b816e8a29b5d0b2bc8be87.tar.gz
hdf5-a01ac97ba509e51905b816e8a29b5d0b2bc8be87.tar.bz2
Merge pull request #2427 in HDFFV/hdf5 from ~JAKE.SMITH/hdf5:develop to develop
* commit '2d9a81878d05732725f96d7d9b20ada8dfd2a146': Fix incorrect FUNC_LEAVE macro (should match FUNC_ENTER_*_TAG).
-rw-r--r--src/H5Dchunk.c4
-rw-r--r--src/H5Ochunk.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index 58dfbc5..e760f63 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -7203,7 +7203,7 @@ H5D__get_num_chunks(const H5D_t *dset, const H5S_t H5_ATTR_UNUSED *space, hsize_
} /* end else */
done:
- FUNC_LEAVE_NOAPI(ret_value)
+ FUNC_LEAVE_NOAPI_TAG(ret_value)
} /* end H5D__get_num_chunks() */
@@ -7341,7 +7341,7 @@ H5D__get_chunk_info(const H5D_t *dset, const H5S_t H5_ATTR_UNUSED *space, hsize_
} /* end if H5F_addr_defined */
done:
- FUNC_LEAVE_NOAPI(ret_value)
+ FUNC_LEAVE_NOAPI_TAG(ret_value)
} /* end H5D__get_chunk_info() */
diff --git a/src/H5Ochunk.c b/src/H5Ochunk.c
index 9ce5a46..72402e4 100644
--- a/src/H5Ochunk.c
+++ b/src/H5Ochunk.c
@@ -358,7 +358,7 @@ H5O__chunk_update_idx(H5F_t *f, H5O_t *oh, unsigned idx)
HGOTO_ERROR(H5E_OHDR, H5E_CANTUNPROTECT, FAIL, "unable to release object header chunk")
done:
- FUNC_LEAVE_NOAPI(ret_value)
+ FUNC_LEAVE_NOAPI_TAG(ret_value)
} /* end H5O__chunk_update_idx() */