diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-12-18 21:08:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-12-18 21:08:40 (GMT) |
commit | 27596d1157d94aae6b45c2b3d52458050bd78168 (patch) | |
tree | b1a44ce88712dc6bbb5a5796568891c8eff6fc42 /test | |
parent | b89d4280876fcbc280fb694e218afa6fa5f67e1d (diff) | |
download | hdf5-27596d1157d94aae6b45c2b3d52458050bd78168.zip hdf5-27596d1157d94aae6b45c2b3d52458050bd78168.tar.gz hdf5-27596d1157d94aae6b45c2b3d52458050bd78168.tar.bz2 |
Fix compile error - declaration after executable statement
Diffstat (limited to 'test')
-rw-r--r-- | test/dsets.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/dsets.c b/test/dsets.c index d017ff3..db0af35 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -7065,6 +7065,7 @@ static void make_random_offset_and_increment(long nelts, long *offsetp, long *incp) { long inc; + const long maxinc; HDassert(0 < nelts); @@ -7073,7 +7074,7 @@ make_random_offset_and_increment(long nelts, long *offsetp, long *incp) /* `maxinc` is chosen so that for any `x` in [0, nelts - 1], * `x + maxinc` does not overflow a long. */ - const long maxinc = MIN(nelts - 1, LONG_MAX - nelts); + maxinc = MIN(nelts - 1, LONG_MAX - nelts); /* Choose a random number in [1, nelts - 1]. If its greatest divisor * in common with `nelts` is 1, then it will "generate" the additive ring @@ -13132,7 +13133,7 @@ test_versionbounds(void) return FAIL; } /* end test_versionbounds() */ - + /*----------------------------------------------------------------------------- * Function: test_object_header_minimization_dcpl * |