diff options
author | David Young <dyoung@hdfgroup.org> | 2020-05-19 19:52:39 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:37:21 (GMT) |
commit | c54c92bf136820e5e94dd8335e99e010d69c5df8 (patch) | |
tree | 06b999549676056d66ed49b6caaaaffb0f726975 | |
parent | f8096dcea3931287e81b5453112c158ae123a07f (diff) | |
download | hdf5-c54c92bf136820e5e94dd8335e99e010d69c5df8.zip hdf5-c54c92bf136820e5e94dd8335e99e010d69c5df8.tar.gz hdf5-c54c92bf136820e5e94dd8335e99e010d69c5df8.tar.bz2 |
Use new style of error reporting.
-rw-r--r-- | tools/lib/h5diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index 42010be..8b6ace9 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -278,8 +278,8 @@ build_match_list (const char *objname1, trav_info_t *info1, const char *objname2 /* init */ trav_table_init(info1->fid, &table); if (table == NULL) { - H5TOOLS_INFO(H5E_tools_min_id_g, "Cannot create traverse table"); - goto done; + H5TOOLS_INFO("Cannot create traverse table"); + H5TOOLS_GOTO_DONE_NO_RET(); } /* |