summaryrefslogtreecommitdiffstats
path: root/test/API/tvlstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/API/tvlstr.c')
-rw-r--r--test/API/tvlstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/API/tvlstr.c b/test/API/tvlstr.c
index 8819a51..ced17ea 100644
--- a/test/API/tvlstr.c
+++ b/test/API/tvlstr.c
@@ -163,7 +163,7 @@ test_vlstrings_basic(void)
CHECK(dataset, FAIL, "H5Dcreate2");
wdata2 = (char *)calloc((size_t)65534, sizeof(char));
- HDmemset(wdata2, 'A', (size_t)65533);
+ memset(wdata2, 'A', (size_t)65533);
ret = H5Dwrite(dataset2, tid1, H5S_ALL, H5S_ALL, H5P_DEFAULT, &wdata2);
CHECK(ret, FAIL, "H5Dwrite");
@@ -626,7 +626,7 @@ test_write_vl_string_attribute(void)
CHECK(att, FAIL, "H5Acreate2");
string_att_write = (char *)calloc((size_t)8192, sizeof(char));
- HDmemset(string_att_write, 'A', (size_t)8191);
+ memset(string_att_write, 'A', (size_t)8191);
ret = H5Awrite(att, type, &string_att_write);
CHECK(ret, FAIL, "H5Awrite");