summaryrefslogtreecommitdiffstats
path: root/testpar/API/t_coll_chunk.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-05 18:49:37 (GMT)
committerGitHub <noreply@github.com>2023-09-05 18:49:37 (GMT)
commitd24f5d5223731d507b51d112ba564d764d6d6c18 (patch)
treed6b198ab73404830c4a259ef03c8e318b5e029c4 /testpar/API/t_coll_chunk.c
parent6dd9cb199c0ecf0882fecf17475f25f1af210f95 (diff)
downloadhdf5-d24f5d5223731d507b51d112ba564d764d6d6c18.zip
hdf5-d24f5d5223731d507b51d112ba564d764d6d6c18.tar.gz
hdf5-d24f5d5223731d507b51d112ba564d764d6d6c18.tar.bz2
Convert hbool_t --> bool in testpar (#3495)
Diffstat (limited to 'testpar/API/t_coll_chunk.c')
-rw-r--r--testpar/API/t_coll_chunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/API/t_coll_chunk.c b/testpar/API/t_coll_chunk.c
index b4e057e..99f845f 100644
--- a/testpar/API/t_coll_chunk.c
+++ b/testpar/API/t_coll_chunk.c
@@ -922,7 +922,7 @@ coll_chunktest(const char *filename, int chunk_factor, int select_factor, int ap
/* Only check chunk optimization mode if selection I/O is not being used -
* selection I/O bypasses this IO mode decision - it's effectively always
* multi chunk currently */
- if (facc_type == FACC_MPIO && /* !H5_use_selection_io_g */ TRUE) {
+ if (facc_type == FACC_MPIO && /* !H5_use_selection_io_g */ true) {
switch (api_option) {
case API_LINK_HARD:
status = H5Pget(xfer_plist, H5D_XFER_COLL_CHUNK_LINK_HARD_NAME, &prop_value);