Add support for GCC 7.x warnings, update warnhist script to account for them,

clean up warnings.
This commit is contained in:
Quincey Koziol
2019-06-21 10:05:34 -05:00
parent 5fc5d947f0
commit 1ccbdfee58
60 changed files with 271 additions and 173 deletions

View File

@@ -783,12 +783,11 @@ static hsize_t diff_datum(
}
/* check object type */
if (ret_value >= 0)
if (obj1_type != obj2_type) {
parallel_print("Different object types referenced: <%s> and <%s>", obj1, obj2);
opts->not_cmp = 1;
HGOTO_DONE (opts->err_stat);
}
if (obj1_type != obj2_type) {
parallel_print("Different object types referenced: <%s> and <%s>", obj1, obj2);
opts->not_cmp = 1;
HGOTO_DONE (opts->err_stat);
}
if ((obj1_id = H5Rdereference2(container1_id, H5P_DEFAULT, H5R_OBJECT, _mem1)) < 0) {
opts->err_stat = 1;