Skip to content

Commit

Permalink
fix: close #83
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Sep 28, 2023
1 parent 9d9b470 commit 0007d9c
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 0007d9c

Please sign in to comment.