summaryrefslogtreecommitdiffstats
path: root/tools/test/h5format_convert/h5fc_gentest.c
diff options
context:
space:
mode:
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]);