diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-17 19:21:33 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-17 19:21:33 (GMT) |
commit | 4af15717e234560a1167dfc92c15986f9cb4f123 (patch) | |
tree | 15b9a18ee0143511fb1fb5a84f7fa95bb1f5c925 /src | |
parent | 67dff8dd8cfcfbb5f37a997b57a9f8f6968e6798 (diff) | |
download | hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.zip hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.tar.gz hdf5-4af15717e234560a1167dfc92c15986f9cb4f123.tar.bz2 |
Bring pull request #1729 from develop to 1.10:
Fix for HDFFV-10800 H5Ocopy failure:
The value for the H5F_LIBVER_V18 index in H5O_fill_ver_bounds[], the format
version bounds array for fill value message, should be version 3 not 2.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Ofill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ofill.c b/src/H5Ofill.c index 8a6004d..dd3f531 100644 --- a/src/H5Ofill.c +++ b/src/H5Ofill.c @@ -156,7 +156,7 @@ const H5O_msg_class_t H5O_MSG_FILL_NEW[1] = {{ /* Format version bounds for fill value */ const unsigned H5O_fill_ver_bounds[] = { H5O_FILL_VERSION_1, /* H5F_LIBVER_EARLIEST */ - H5O_FILL_VERSION_2, /* H5F_LIBVER_V18 */ + H5O_FILL_VERSION_3, /* H5F_LIBVER_V18 */ H5O_FILL_VERSION_LATEST /* H5F_LIBVER_LATEST */ }; |