diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-06-17 15:28:58 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2019-06-17 15:28:58 (GMT) |
commit | f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7 (patch) | |
tree | 4088ff1236723f0fcb60d547848f6d7cb76661b2 /src | |
parent | cbc95dee3c794fb7099e8a4c5f25ca56e981c31a (diff) | |
parent | dfdc27b04b2e8bcd1985ba90ce6553d8b3805fda (diff) | |
download | hdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.zip hdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.tar.gz hdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.tar.bz2 |
Merge pull request #1729 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/HDFFV-10800-h5ocopy-failure to develop
* commit 'dfdc27b04b2e8bcd1985ba90ce6553d8b3805fda':
Fix release notes based on feedback from pull request.
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 d87dc84..53abff3 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_3, /* H5F_LIBVER_V110 */ H5O_FILL_VERSION_LATEST /* H5F_LIBVER_LATEST */ }; |