diff options
Diffstat (limited to 'test/trefer.c')
-rw-r--r-- | test/trefer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/trefer.c b/test/trefer.c index 9fc6563..7791ca1 100644 --- a/test/trefer.c +++ b/test/trefer.c @@ -2807,8 +2807,8 @@ test_reference(void) test_reference_obj(); /* Test basic H5R object reference code */ /* Loop through all the combinations of low/high version bounds */ - 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; H5_INC_ENUM(H5F_libver_t, high)) { + for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) { + for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) { /* Invalid combinations, just continue */ if(high == H5F_LIBVER_EARLIEST || high < low) |