summaryrefslogtreecommitdiffstats
path: root/tools/test/h5format_convert/h5fc_gentest.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 19:33:46 (GMT)
committerGitHub <noreply@github.com>2023-06-29 19:33:46 (GMT)
commit39e6bf48c92dda00057e2e19cdeed93f5a07b3c8 (patch)
tree7596e876fd008f38830d04591d49a0328208b0d1 /tools/test/h5format_convert/h5fc_gentest.c
parentfd933f30b1f8cd487ad790ac0b054bb779280a62 (diff)
downloadhdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.zip
hdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.tar.gz
hdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.tar.bz2
Remove HD from HDmem* calls (#3211)
Diffstat (limited to 'tools/test/h5format_convert/h5fc_gentest.c')
-rw-r--r--tools/test/h5format_convert/h5fc_gentest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5format_convert/h5fc_gentest.c b/tools/test/h5format_convert/h5fc_gentest.c
index 9a3a891..5b8bfce 100644
--- a/tools/test/h5format_convert/h5fc_gentest.c
+++ b/tools/test/h5format_convert/h5fc_gentest.c
@@ -424,7 +424,7 @@ gen_err_level(const char *fname)
/* Initialize data buffer */
buf = (unsigned char *)malloc(NUM * sizeof(unsigned char *));
- HDmemset(buf, 42, NUM * sizeof(unsigned char));
+ memset(buf, 42, NUM * sizeof(unsigned char));
/* Create the test file */
if ((fid = H5Fcreate(fname, H5F_ACC_TRUNC, fcpl, fapl)) < 0)
@@ -797,7 +797,7 @@ main(void)
for (i = 0; i < 8; i++) {
char filename[50];
- HDmemset(filename, 0, sizeof(filename));
+ memset(filename, 0, sizeof(filename));
if (!new_format)
HDstrcat(filename, "old_");
HDstrcat(filename, FILENAME[i]);