Skip to content

Commit

Permalink
Rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHogan committed Mar 17, 2022
1 parent 39c5215 commit 1cc6e37
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions adapter/vfd/H5FDhermes.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,7 @@ H5FD__hermes_open(const char *name, unsigned flags, hid_t fapl_id,
char* token = strtok_r(config_str_buf, " ", &saveptr);
if (!strcmp(token, "true") || !strcmp(token, "TRUE") ||
!strcmp(token, "True")) {
new_fa.persistence = 1;
} else {
new_fa.persistence = 0;
new_fa.persistence = true;
}
token = strtok_r(0, " ", &saveptr);
sscanf(token, "%zu", &(new_fa.page_size));
Expand Down

0 comments on commit 1cc6e37

Please sign in to comment.