summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 22:00:07 (GMT)
committerGitHub <noreply@github.com>2023-07-27 22:00:07 (GMT)
commit0e82707100cf3d1b698d2ec0cad08db61d552d63 (patch)
tree6d8c9adf10cb2f52f7ad33b93e30ee0aef3125e0 /utils
parent61186204c020a81b5b0044a3b5e08311ccf1424d (diff)
downloadhdf5-0e82707100cf3d1b698d2ec0cad08db61d552d63.zip
hdf5-0e82707100cf3d1b698d2ec0cad08db61d552d63.tar.gz
hdf5-0e82707100cf3d1b698d2ec0cad08db61d552d63.tar.bz2
Misc missed things from previous merges (#3295)
Diffstat (limited to 'utils')
-rw-r--r--utils/tools/h5dwalk/h5dwalk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/tools/h5dwalk/h5dwalk.c b/utils/tools/h5dwalk/h5dwalk.c
index 6138fcd..256ac45 100644
--- a/utils/tools/h5dwalk/h5dwalk.c
+++ b/utils/tools/h5dwalk/h5dwalk.c
@@ -299,8 +299,8 @@ distribute_separator_add(struct distribute_option *option, uint64_t separator)
pos = low;
if (pos < count)
- HDmemmove(&option->separators[low + 1], &option->separators[low],
- sizeof(*option->separators) * (uint64_t)(count - pos));
+ memmove(&option->separators[low + 1], &option->separators[low],
+ sizeof(*option->separators) * (uint64_t)(count - pos));
option->separators[pos] = separator;
return 0;
@@ -774,7 +774,7 @@ fill_file_list(mfu_flist new_flist, const char *config_filename, int myrank, int
}
linebuf[0] = 0;
}
- HDfclose(config);
+ fclose(config);
return index;
}
@@ -1317,7 +1317,7 @@ process_input_file(char *inputname, int myrank, int size)
if (output_log_file) {
dh5tool_flist_write_text(output_log_file, flist1);
}
- HDfclose(config);
+ fclose(config);
mfu_flist_free(&flist1);
return 0;