summaryrefslogtreecommitdiffstats
path: root/test/API/tcoords.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/API/tcoords.c')
-rw-r--r--test/API/tcoords.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/API/tcoords.c b/test/API/tcoords.c
index 2471504..5599def 100644
--- a/test/API/tcoords.c
+++ b/test/API/tcoords.c
@@ -87,9 +87,9 @@ test_singleEnd_selElements(hid_t file, bool is_chunked)
/* Construct dataset's name */
memset(dset_name, 0, (size_t)NAME_LEN);
- HDstrcat(dset_name, SINGLE_END_DSET);
+ strcat(dset_name, SINGLE_END_DSET);
if (is_chunked)
- HDstrcat(dset_name, "_chunked");
+ strcat(dset_name, "_chunked");
did = H5Dcreate2(file, dset_name, H5T_NATIVE_INT, sid, H5P_DEFAULT, plid, H5P_DEFAULT);
CHECK(did, FAIL, "H5Dcreate2");
@@ -259,9 +259,9 @@ test_singleEnd_selHyperslab(hid_t file, bool is_chunked)
/* Construct dataset's name */
memset(dset_name, 0, NAME_LEN);
- HDstrcat(dset_name, SINGLE_END_DSET);
+ strcat(dset_name, SINGLE_END_DSET);
if (is_chunked)
- HDstrcat(dset_name, "_chunked");
+ strcat(dset_name, "_chunked");
/* Dataspace for the dataset in file */
sid = H5Screate_simple(4, da_dims, da_dims);
@@ -462,9 +462,9 @@ test_multiple_ends(hid_t file, bool is_chunked)
/* Construct dataset's name */
memset(dset_name, 0, NAME_LEN);
- HDstrcat(dset_name, MULTI_ENDS_SEL_HYPER_DSET);
+ strcat(dset_name, MULTI_ENDS_SEL_HYPER_DSET);
if (is_chunked)
- HDstrcat(dset_name, "_chunked");
+ strcat(dset_name, "_chunked");
did = H5Dcreate2(file, dset_name, H5T_NATIVE_INT, sid, H5P_DEFAULT, plid, H5P_DEFAULT);
CHECK(did, FAIL, "H5Dcreate2");