diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-07-27 18:09:05 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-07-27 18:09:05 (GMT) |
commit | 6e740457cc338a7c4db95be4458c76828da7a872 (patch) | |
tree | 4ed353cff9a731edfce62decc68bfb6460aa937d /src/H5Eint.c | |
parent | 74e09473c825610d203565e5ed9deb156256d6ea (diff) | |
download | hdf5-6e740457cc338a7c4db95be4458c76828da7a872.zip hdf5-6e740457cc338a7c4db95be4458c76828da7a872.tar.gz hdf5-6e740457cc338a7c4db95be4458c76828da7a872.tar.bz2 |
Minor normalization with 1.10 branch
Diffstat (limited to 'src/H5Eint.c')
-rw-r--r-- | src/H5Eint.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c index fe72449..2371a5f 100644 --- a/src/H5Eint.c +++ b/src/H5Eint.c @@ -33,7 +33,6 @@ /* Headers */ /***********/ #include "H5private.h" /* Generic Functions */ -#include "H5CXprivate.h" /* API Contexts */ #include "H5Epkg.h" /* Error handling */ #include "H5Iprivate.h" /* IDs */ #include "H5MMprivate.h" /* Memory management */ @@ -576,7 +575,7 @@ H5E__walk(const H5E_t *estack, H5E_direction_t direction, const H5E_walk_op_t *o ret_value = (op->u.func2)((unsigned)(estack->nused - (size_t)(i + 1)), estack->slot + i, client_data); } /* end else */ - if(ret_value < 0) + if(ret_value < 0) HERROR(H5E_ERROR, H5E_CANTLIST, "can't walk error stack"); } /* end if */ } /* end else */ |