merge intel warning fix

This commit is contained in:
Kimmy Mu
2020-01-06 12:17:10 -06:00
committed by kmu
parent e75b2e3c2c
commit de28f691ba
43 changed files with 107 additions and 100 deletions

View File

@@ -907,7 +907,7 @@ h5diff(const char *fname1,
parallel_print("file1 file2\n");
parallel_print("---------------------------------------\n");
for(u = 0; u < match_list->nobjs; u++) {
char c1, c2;
int c1, c2;
c1 = (match_list->objs[u].flags[0]) ? 'x' : ' ';
c2 = (match_list->objs[u].flags[1]) ? 'x' : ' ';
parallel_print("%5c %6c %-15s\n", c1, c2, match_list->objs[u].name);