summaryrefslogtreecommitdiffstats
path: root/test/set_extent.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-03-21 08:15:09 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-03-21 08:15:09 (GMT)
commit97cdcc47e4291394d136121554f8d5130ab19bd4 (patch)
tree91f4e68ebcba53bcb5ad40752ef534957b92c61f /test/set_extent.c
parentb01b84f245bcaf02c718463b38f1e693d5408de9 (diff)
downloadhdf5-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/set_extent.c')
-rw-r--r--test/set_extent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/set_extent.c b/test/set_extent.c
index 5d11819..f6b02cf 100644
--- a/test/set_extent.c
+++ b/test/set_extent.c
@@ -433,8 +433,8 @@ static int do_layouts( hid_t fapl )
TESTING("storage layout use - tested with all low/high library format bounds");
/* 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)) {
/* Copy plist to use locally to avoid modifying the original */
new_fapl = H5Pcopy(fapl);