diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-31 15:58:26 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-07-31 15:58:26 (GMT) |
commit | 32e1c9f89d1685572445217d1293df2dcb0eeb13 (patch) | |
tree | e22c382efbf43c98d4c6c4e82bf114cbfa8899db /src | |
parent | 00a546ec57edd319d95baea088ab0f9fb7b722b5 (diff) | |
download | hdf5-32e1c9f89d1685572445217d1293df2dcb0eeb13.zip hdf5-32e1c9f89d1685572445217d1293df2dcb0eeb13.tar.gz hdf5-32e1c9f89d1685572445217d1293df2dcb0eeb13.tar.bz2 |
Changes based on PR review.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fsuper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fsuper.c b/src/H5Fsuper.c index 8d165ec..4999565 100644 --- a/src/H5Fsuper.c +++ b/src/H5Fsuper.c @@ -1855,7 +1855,7 @@ H5O__fsinfo_set_version(H5F_t *f, H5O_fsinfo_t *fsinfo) /* Version bounds check */ if(H5O_fsinfo_ver_bounds[H5F_HIGH_BOUND(f)] == H5O_INVALID_VERSION || version > H5O_fsinfo_ver_bounds[H5F_HIGH_BOUND(f)]) - HGOTO_ERROR(H5E_DATASET, H5E_BADRANGE, FAIL, "File space info message's version out of bounds") + HGOTO_ERROR(H5E_FILE, H5E_BADRANGE, FAIL, "File space info message's version out of bounds") /* Set the message version */ fsinfo->version = version; |