summaryrefslogtreecommitdiffstats
path: root/test/API/tselect.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:30:54 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:30:54 (GMT)
commit6df077953ed8be3ac9ed247aaeac0c7f502161c9 (patch)
tree9c75a06d0c52c788a144435508d6a38e34c50757 /test/API/tselect.c
parentf5ca9237a296f6deefb633b6fb1d61daea4b4f6e (diff)
downloadhdf5-6df077953ed8be3ac9ed247aaeac0c7f502161c9.zip
hdf5-6df077953ed8be3ac9ed247aaeac0c7f502161c9.tar.gz
hdf5-6df077953ed8be3ac9ed247aaeac0c7f502161c9.tar.bz2
Rename HDqsort() to qsort() (#3193)
* Rename HDqsort() to qsort() * Committing clang-format changes --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test/API/tselect.c')
-rw-r--r--test/API/tselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/API/tselect.c b/test/API/tselect.c
index a2f377d..292bf84 100644
--- a/test/API/tselect.c
+++ b/test/API/tselect.c
@@ -1383,8 +1383,8 @@ test_select_hyper_stride(hid_t xfer_plist)
CHECK(ret, FAIL, "H5Dread");
/* Sort the locations into the proper order */
- HDqsort(loc1, (size_t)72, sizeof(size_t), compare_size_t);
- HDqsort(loc2, (size_t)72, sizeof(size_t), compare_size_t);
+ qsort(loc1, (size_t)72, sizeof(size_t), compare_size_t);
+ qsort(loc2, (size_t)72, sizeof(size_t), compare_size_t);
/* Compare data read with data written out */
for (i = 0; i < 72; i++) {
tbuf = wbuf + loc1[i];