diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-03-21 08:15:09 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-03-21 08:15:09 (GMT) |
commit | 97cdcc47e4291394d136121554f8d5130ab19bd4 (patch) | |
tree | 91f4e68ebcba53bcb5ad40752ef534957b92c61f /test/th5o.c | |
parent | b01b84f245bcaf02c718463b38f1e693d5408de9 (diff) | |
download | hdf5-97cdcc47e4291394d136121554f8d5130ab19bd4.zip hdf5-97cdcc47e4291394d136121554f8d5130ab19bd4.tar.gz hdf5-97cdcc47e4291394d136121554f8d5130ab19bd4.tar.bz2 |
Used the H5_INC_ENUM macro to squash enum value increment warnings.
Diffstat (limited to 'test/th5o.c')
-rw-r--r-- | test/th5o.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5o.c b/test/th5o.c index 63fee5f..0aa589f 100644 --- a/test/th5o.c +++ b/test/th5o.c @@ -806,8 +806,8 @@ test_h5o_link(void) CHECK(fapl_id, FAIL, "H5Pcreate"); /* Loop through all the combinations of low/high library format bounds */ - for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) { - for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) { + 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)) { /* Set version bounds */ H5E_BEGIN_TRY { |