summaryrefslogtreecommitdiffstats
path: root/test/efc.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 20:43:30 (GMT)
committerGitHub <noreply@github.com>2023-07-27 20:43:30 (GMT)
commit1e91d96fa02466ffe451319bdac1005f84dc7993 (patch)
tree4de04ef502c313dfd766497b20235188761146c0 /test/efc.c
parent95e5349089b95dfb95f0f8ce2d6db1bc04ba6c82 (diff)
downloadhdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.zip
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.gz
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.bz2
Brings over most of the HD prefix removal (#3293)
Diffstat (limited to 'test/efc.c')
-rw-r--r--test/efc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/efc.c b/test/efc.c
index c29cddb..ad7a5f0 100644
--- a/test/efc.c
+++ b/test/efc.c
@@ -2666,7 +2666,7 @@ main(void)
/* Allocate memory for filenames */
for (i = 0; i < N_FILENAMES; i++) {
- filename[i] = (char *)HDcalloc(PATH_MAX, sizeof(char));
+ filename[i] = (char *)calloc(PATH_MAX, sizeof(char));
}
/* Patch filenames */
@@ -2716,7 +2716,7 @@ main(void)
h5_clean_files(FILENAME, fapl_id);
for (i = 0; i < N_FILENAMES; i++) {
- HDfree(filename[i]);
+ free(filename[i]);
}
return EXIT_SUCCESS;
@@ -2734,7 +2734,7 @@ error:
H5CX_pop(FALSE);
for (i = 0; i < N_FILENAMES; i++) {
- HDfree(filename[i]);
+ free(filename[i]);
}
return EXIT_FAILURE;