Skip to content

Commit

Permalink
Fix Intel oneAPI icc warning (#3619)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored Sep 30, 2023
1 parent 1fd82ab commit 4261552
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/h5test.c
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,14 @@ h5_fixname_real(const char *base_name, hid_t fapl, const char *_suffix, char *fu
if (H5FD_FAMILY == driver) {
if (subst_for_superblock)
suffix = "-000000.h5";
else
suffix = nest_printf ? "-%%06d.h5" : "-%06d.h5";
else {
if (nest_printf) {
suffix = "-%%06d.h5";
}
else {
suffix = "-%06d.h5";
}
}
}
else if (H5FD_MULTI == driver) {

Expand Down

0 comments on commit 4261552

Please sign in to comment.