summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff_util.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-01-23 16:20:34 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:31:52 (GMT)
commitcfd8856288232b1cd1e495ddfd4aba79d1f60422 (patch)
treeb62ea9144c9fe951dea9b75c5fbe0aa147793263 /tools/lib/h5diff_util.c
parent812e7eda57444aca286a73e13790c8e0e0f0103a (diff)
downloadhdf5-cfd8856288232b1cd1e495ddfd4aba79d1f60422.zip
hdf5-cfd8856288232b1cd1e495ddfd4aba79d1f60422.tar.gz
hdf5-cfd8856288232b1cd1e495ddfd4aba79d1f60422.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.c3
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;
}