summaryrefslogtreecommitdiffstats
path: root/tools/libtest
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-09-30 19:50:18 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-09-30 19:50:18 (GMT)
commitbbe81a2155bfa42545579761c4f064353d6f68de (patch)
tree68ce47245bd73b41fc38c9a25981221da6b7ed95 /tools/libtest
parent35dc4b56d0964be0a59489be29aa04b6dd165cf2 (diff)
downloadhdf5-bbe81a2155bfa42545579761c4f064353d6f68de.zip
hdf5-bbe81a2155bfa42545579761c4f064353d6f68de.tar.gz
hdf5-bbe81a2155bfa42545579761c4f064353d6f68de.tar.bz2
fix for statement declare of type
Diffstat (limited to 'tools/libtest')
-rw-r--r--tools/libtest/h5tools_test_utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/libtest/h5tools_test_utils.c b/tools/libtest/h5tools_test_utils.c
index 7908519..120f803 100644
--- a/tools/libtest/h5tools_test_utils.c
+++ b/tools/libtest/h5tools_test_utils.c
@@ -1134,6 +1134,7 @@ test_set_configured_fapl(void)
#endif /* H5_HAVE_LIBHDFS */
}; /* testcases `cases` array */
+ unsigned int i;
#ifdef H5_HAVE_ROS3_VFD
n_cases += 5;
@@ -1145,7 +1146,7 @@ test_set_configured_fapl(void)
TESTING("programmatic fapl set");
- for (unsigned i = 0; i < n_cases; i++) {
+ for (i = 0; i < n_cases; i++) {
int result;
testcase C = cases[i];