diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-10-12 16:37:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 16:37:56 (GMT) |
commit | 72f94bc1f55495edcbeb199e7541c45f8b325919 (patch) | |
tree | 6dc4799819a430074414cef6d031555d3d0de7f3 | |
parent | 85c176247d2c434d9db535999a285daa13aa50b5 (diff) | |
download | hdf5-72f94bc1f55495edcbeb199e7541c45f8b325919.zip hdf5-72f94bc1f55495edcbeb199e7541c45f8b325919.tar.gz hdf5-72f94bc1f55495edcbeb199e7541c45f8b325919.tar.bz2 |
Simplify. (#3659)
* Address @jhendersonHDF review
-rw-r--r-- | testpar/t_filters_parallel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_filters_parallel.c b/testpar/t_filters_parallel.c index 198201a..12156bb 100644 --- a/testpar/t_filters_parallel.c +++ b/testpar/t_filters_parallel.c @@ -576,7 +576,7 @@ create_datasets(hid_t parent_obj_id, const char *dset_name, hid_t type_id, hid_t dset_name_ptr = dset_name_multi_buf; n_dsets = (rand() % (MAX_NUM_DSETS_MULTI - 1)) + 2; - /* Select between 1 and (n_dsets - 1) datasets to NOT be filtered */ + /* Select between 1 and (n_dsets - 1) datasets to be unfiltered */ if (test_mode == USE_MULTIPLE_DATASETS_MIXED_FILTERED) { n_unfiltered = (rand() % (n_dsets - 1)) + 1; |