summaryrefslogtreecommitdiffstats
path: root/test/earray.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-01-09 03:40:32 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-01-09 03:40:32 (GMT)
commit887aa3d05d0a64e1c8198138334c0fe761d0ab2f (patch)
treef76830792c4ebde1d4cf96810dfce70cc07808cb /test/earray.c
parent78f0ecc3b98c77b4293c02e78d158a8385513d37 (diff)
downloadhdf5-887aa3d05d0a64e1c8198138334c0fe761d0ab2f.zip
hdf5-887aa3d05d0a64e1c8198138334c0fe761d0ab2f.tar.gz
hdf5-887aa3d05d0a64e1c8198138334c0fe761d0ab2f.tar.bz2
Merge of --Wc++-compat changes from develop
Diffstat (limited to 'test/earray.c')
-rw-r--r--test/earray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/earray.c b/test/earray.c
index bace4b7..4087648 100644
--- a/test/earray.c
+++ b/test/earray.c
@@ -2470,7 +2470,7 @@ main(void)
init_cparam(&cparam);
/* Iterate over the testing parameters */
- for(curr_test = EARRAY_TEST_NORMAL; curr_test < EARRAY_TEST_NTESTS; H5_INC_ENUM(earray_test_type_t, curr_test)) {
+ for(curr_test = EARRAY_TEST_NORMAL; curr_test < EARRAY_TEST_NTESTS; curr_test++) {
/* Initialize the testing parameters */
init_tparam(&tparam, &cparam);
@@ -2502,7 +2502,7 @@ main(void)
nerrors += test_delete_open(fapl, &cparam, &tparam);
/* Iterate over the type of capacity tests */
- for(curr_iter = EARRAY_ITER_FW; curr_iter < EARRAY_ITER_NITERS; H5_INC_ENUM(earray_iter_type_t, curr_iter)) {
+ for(curr_iter = EARRAY_ITER_FW; curr_iter < EARRAY_ITER_NITERS; curr_iter++) {
hsize_t sblk; /* Super block index */
hsize_t dblk; /* Data block index */
hsize_t nelmts; /* # of elements to test */