summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff_attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/h5diff_attr.c')
-rw-r--r--tools/lib/h5diff_attr.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/lib/h5diff_attr.c b/tools/lib/h5diff_attr.c
index 351e6ab..a648be1 100644
--- a/tools/lib/h5diff_attr.c
+++ b/tools/lib/h5diff_attr.c
@@ -274,8 +274,14 @@ static herr_t build_match_list_attrs(hid_t loc1_id, hid_t loc2_id, table_attrs_t
parallel_print(" --------------------------------------\n");
for(i = 0; i < (unsigned int) table_lp->nattrs; i++) {
char c1, c2;
- c1 = (table_lp->attrs[i].exist[0]) ? 'x' : ' ';
- c2 = (table_lp->attrs[i].exist[1]) ? 'x' : ' ';
+ if (table_lp->attrs[i].exist[0])
+ c1 = 'x';
+ else
+ c1 = ' ';
+ if (table_lp->attrs[i].exist[1])
+ c2 = 'x';
+ else
+ c2 = ' ';
parallel_print("%5c %6c %-15s\n", c1, c2, table_lp->attrs[i].name);
} /* end for */
}