summaryrefslogtreecommitdiffstats
path: root/test/flush1.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 22:48:12 (GMT)
committerGitHub <noreply@github.com>2023-06-28 22:48:12 (GMT)
commitaebac33a1f290fa5065bce96bb0512317a34c283 (patch)
treecdbae6dbd65a2eb4e6f786921ee907cec92c92d3 /test/flush1.c
parent605cea4af60cfcbe03a54f697de392eec75e5a85 (diff)
downloadhdf5-aebac33a1f290fa5065bce96bb0512317a34c283.zip
hdf5-aebac33a1f290fa5065bce96bb0512317a34c283.tar.gz
hdf5-aebac33a1f290fa5065bce96bb0512317a34c283.tar.bz2
Remove HD from memory allocate/free calls (#3195)
* HDcalloc * HDfree * HDmalloc * HDrealloc
Diffstat (limited to 'test/flush1.c')
-rw-r--r--test/flush1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/flush1.c b/test/flush1.c
index ea8cbb9..54fa738 100644
--- a/test/flush1.c
+++ b/test/flush1.c
@@ -138,7 +138,7 @@ add_dset_to_file(hid_t fid, const char *dset_name)
STACK_ERROR;
/* Write some data */
- if (NULL == (data = (int *)HDcalloc((size_t)NELEMENTS, sizeof(int))))
+ if (NULL == (data = (int *)calloc((size_t)NELEMENTS, sizeof(int))))
STACK_ERROR;
for (i = 0; i < NELEMENTS; i++)
data[i] = i;
@@ -152,7 +152,7 @@ add_dset_to_file(hid_t fid, const char *dset_name)
if (H5Dclose(did) < 0)
STACK_ERROR;
- HDfree(data);
+ free(data);
return SUCCEED;
@@ -165,7 +165,7 @@ error:
}
H5E_END_TRY
- HDfree(data);
+ free(data);
return FAIL;
} /* end add_dset_to_file() */