summaryrefslogtreecommitdiffstats
path: root/test/s3comms.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 /test/s3comms.c
parentfd933f30b1f8cd487ad790ac0b054bb779280a62 (diff)
downloadhdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.zip
hdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.tar.gz
hdf5-39e6bf48c92dda00057e2e19cdeed93f5a07b3c8.tar.bz2
Remove HD from HDmem* calls (#3211)
Diffstat (limited to 'test/s3comms.c')
-rw-r--r--test/s3comms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/s3comms.c b/test/s3comms.c
index 87b6c7b..07dcce9 100644
--- a/test/s3comms.c
+++ b/test/s3comms.c
@@ -2340,7 +2340,7 @@ test_trim(void)
assert(str == NULL);
str = (char *)malloc(sizeof(char *) * 11);
assert(str != NULL);
- HDmemcpy(str, "some text ", 11); /* string with null terminator */
+ memcpy(str, "some text ", 11); /* string with null terminator */
JSVERIFY(FAIL, H5FD_s3comms_trim(NULL, str, 10, &dest_len), "destination for trim cannot be NULL");
free(str);
str = NULL;