summaryrefslogtreecommitdiffstats
path: root/test/vds_env.c
diff options
context:
space:
mode:
authorSongyu Lu <songyulu@hdfgroup.org>2019-04-11 20:51:21 (GMT)
committerSongyu Lu <songyulu@hdfgroup.org>2019-04-11 20:51:21 (GMT)
commit1d1e96f1dd7a6f7272260ad6f0e1b3a426e5c54c (patch)
treefab02c599fe9eabacd6eac4101ff6decb9e74b64 /test/vds_env.c
parentc3c3c1e1426e4f2b8229ad8fe5cc4416a1156da5 (diff)
downloadhdf5-1d1e96f1dd7a6f7272260ad6f0e1b3a426e5c54c.zip
hdf5-1d1e96f1dd7a6f7272260ad6f0e1b3a426e5c54c.tar.gz
hdf5-1d1e96f1dd7a6f7272260ad6f0e1b3a426e5c54c.tar.bz2
Some coding style changes.
Diffstat (limited to 'test/vds_env.c')
-rw-r--r--test/vds_env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vds_env.c b/test/vds_env.c
index b42bb00..4ee8096 100644
--- a/test/vds_env.c
+++ b/test/vds_env.c
@@ -309,7 +309,7 @@ main(void)
if((my_fapl = H5Pcopy(fapl)) < 0) TEST_ERROR
/* Loop through all the combinations of low/high version bounds */
- for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) {
+ for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; H5_INC_ENUM(H5F_libver_t, low)) {
for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) {
char msg[80]; /* Message for file version bounds */
char *low_string; /* The low bound string */