summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff_attr.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-12-20 20:18:01 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-12-20 20:18:01 (GMT)
commitde0f6670767e952c5a0a7bb3418164f42d92ba6f (patch)
tree5276cd6fadd6150432a6010f0aaddd97376306cc /tools/lib/h5diff_attr.c
parent23f813026f06f3ed9aa9fea86df265950eb6770f (diff)
downloadhdf5-de0f6670767e952c5a0a7bb3418164f42d92ba6f.zip
hdf5-de0f6670767e952c5a0a7bb3418164f42d92ba6f.tar.gz
hdf5-de0f6670767e952c5a0a7bb3418164f42d92ba6f.tar.bz2
Fix compile statement order
Diffstat (limited to 'tools/lib/h5diff_attr.c')
-rw-r--r--tools/lib/h5diff_attr.c2
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) {