diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-01-23 16:20:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-01-23 16:20:34 (GMT) |
commit | ee1fa14066af158fdafafd6e051f7d5b5f79ba6a (patch) | |
tree | 2e9482f9194dfd6d37e06ba98e902444b94b340c /tools/lib/h5diff_util.c | |
parent | edcba1ce2e11f80d20fcce8f4cfacae1308bf839 (diff) | |
download | hdf5-ee1fa14066af158fdafafd6e051f7d5b5f79ba6a.zip hdf5-ee1fa14066af158fdafafd6e051f7d5b5f79ba6a.tar.gz hdf5-ee1fa14066af158fdafafd6e051f7d5b5f79ba6a.tar.bz2 |
Change tools debug macros to not use error stack
Diffstat (limited to 'tools/lib/h5diff_util.c')
-rw-r--r-- | tools/lib/h5diff_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/h5diff_util.c b/tools/lib/h5diff_util.c index 8da995a..59b11d6 100644 --- a/tools/lib/h5diff_util.c +++ b/tools/lib/h5diff_util.c @@ -341,6 +341,7 @@ herr_t match_up_memsize (hid_t f_tid1_id, hid_t f_tid2_id, { herr_t ret_value = SUCCEED; + H5TOOLS_START_DEBUG(""); if((*m_size1) != (*m_size2)) { if((*m_size1) < (*m_size2)) { H5Tclose(*m_tid1); @@ -363,7 +364,7 @@ herr_t match_up_memsize (hid_t f_tid1_id, hid_t f_tid2_id, H5TOOLS_GOTO_ERROR(FAIL, "native type sizes do not compare"); done: - H5TOOLS_ENDDEBUG("exit"); + H5TOOLS_ENDDEBUG(""); return ret_value; } |