diff options
author | kmu <kmu@hdfgroup.org> | 2019-11-26 23:23:34 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2019-11-26 23:23:34 (GMT) |
commit | 4c8a2f726a2eb47a937430e28994db8be1b87b00 (patch) | |
tree | 7b6849d8aff9ab9c9fe4b8f6ac40113e69454de3 /src/H5Oint.c | |
parent | fc61b7a9f3a38331809ebcb6247482943947cdb8 (diff) | |
download | hdf5-4c8a2f726a2eb47a937430e28994db8be1b87b00.zip hdf5-4c8a2f726a2eb47a937430e28994db8be1b87b00.tar.gz hdf5-4c8a2f726a2eb47a937430e28994db8be1b87b00.tar.bz2 |
Revert "using a different MACRO"
This reverts commit fc61b7a9f3a38331809ebcb6247482943947cdb8.
Diffstat (limited to 'src/H5Oint.c')
-rw-r--r-- | src/H5Oint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oint.c b/src/H5Oint.c index 0e69bfa..b923605 100644 --- a/src/H5Oint.c +++ b/src/H5Oint.c @@ -239,7 +239,7 @@ H5O_set_version(H5F_t *f, H5O_t *oh, uint8_t oh_flags, hbool_t store_msg_crt_idx version = H5O_VERSION_1; /* Upgrade to the version indicated by the file's low bound if higher */ - H5_CHECKED_ASSIGN(version, uint8_t, MAX(version, (uint8_t)H5O_obj_ver_bounds[H5F_LOW_BOUND(f)]), int); + ASSIGN_TO_SMALLER_SIZE(version, uint8_t, MAX(version, (uint8_t)H5O_obj_ver_bounds[H5F_LOW_BOUND(f)]), int); /* Version bounds check */ if(version > H5O_obj_ver_bounds[H5F_HIGH_BOUND(f)]) |