diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2021-05-18 22:04:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 22:04:38 (GMT) |
commit | 2a9b0a2a0b8d2e9d5cbfd2fe3e05f6715831809b (patch) | |
tree | e2ca3bd304318a5135216dcc449194cb1ab4d347 /src/H5E.c | |
parent | ed86f4aaf48541dc911fc82a31ea8818acd45d31 (diff) | |
download | hdf5-2a9b0a2a0b8d2e9d5cbfd2fe3e05f6715831809b.zip hdf5-2a9b0a2a0b8d2e9d5cbfd2fe3e05f6715831809b.tar.gz hdf5-2a9b0a2a0b8d2e9d5cbfd2fe3e05f6715831809b.tar.bz2 |
H5TRACE3 macro change for hdf5 1 12 (#656)
* Revert addition of & to 2 parameters in DSetCreatPropList::setVirtual
from PR #448 Various clang tidy warning fixes, to maintain binary
compatibility in hdf5_1_12.
* Commit H5Trace3 macro change for code change merged from develop.
* Enable maintainer mode.
Diffstat (limited to 'src/H5E.c')
-rw-r--r-- | src/H5E.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1547,7 +1547,7 @@ H5Eget_auto2(hid_t estack_id, H5E_auto2_t *func, void **client_data) /* Don't clear the error stack! :-) */ FUNC_ENTER_API_NOCLEAR(FAIL) - H5TRACE3("e", "ixx", estack_id, func, client_data); + H5TRACE3("e", "i*x**x", estack_id, func, client_data); if (estack_id == H5E_DEFAULT) { if (NULL == (estack = H5E__get_my_stack())) /*lint !e506 !e774 Make lint 'constant value Boolean' in |