diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-12-20 20:18:01 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:22 (GMT) |
commit | 463671a4f4783181db6cb7b58b8d5b75c8c7c53a (patch) | |
tree | cf924cd5d5f082295e2c93bf60b85db472276fc5 /tools/lib/h5diff_attr.c | |
parent | 972c57f7692b2e362e2665196fcbcf17524e7d01 (diff) | |
download | hdf5-463671a4f4783181db6cb7b58b8d5b75c8c7c53a.zip hdf5-463671a4f4783181db6cb7b58b8d5b75c8c7c53a.tar.gz hdf5-463671a4f4783181db6cb7b58b8d5b75c8c7c53a.tar.bz2 |
Fix compile statement order
Diffstat (limited to 'tools/lib/h5diff_attr.c')
-rw-r--r-- | tools/lib/h5diff_attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_attr.c b/tools/lib/h5diff_attr.c index bd66567..40a3b01 100644 --- a/tools/lib/h5diff_attr.c +++ b/tools/lib/h5diff_attr.c @@ -550,9 +550,9 @@ hsize_t diff_attr(hid_t loc1_id, hid_t loc2_id, const char *path1, const char *p unsigned u; /* Local index variable */ hsize_t nfound = 0; hsize_t nfound_total = 0; + table_attrs_t *match_list_attrs = NULL; H5TOOLS_PUSH_STACK(); - table_attrs_t *match_list_attrs = NULL; H5TOOLS_DEBUG(H5E_tools_min_dbg_id_g, "diff_attr start - errstat:%d", opts->err_stat); if(build_match_list_attrs(loc1_id, loc2_id, &match_list_attrs, opts) < 0) { |