diff options
author | kmu <kmu@hdfgroup.org> | 2019-12-06 20:12:57 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:25 (GMT) |
commit | 271bce5b10017010e861835e5d3d1137a7fb6df4 (patch) | |
tree | 2880328a49f8371d0aad354503c71ec8319c89d5 /src/H5Oginfo.c | |
parent | 1d46e823172046f259eb054370ea721eacad79b1 (diff) | |
download | hdf5-271bce5b10017010e861835e5d3d1137a7fb6df4.zip hdf5-271bce5b10017010e861835e5d3d1137a7fb6df4.tar.gz hdf5-271bce5b10017010e861835e5d3d1137a7fb6df4.tar.bz2 |
remove unnecessary check macro
Diffstat (limited to 'src/H5Oginfo.c')
-rw-r--r-- | src/H5Oginfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c index a461613..237bf6c 100644 --- a/src/H5Oginfo.c +++ b/src/H5Oginfo.c @@ -183,7 +183,7 @@ H5O_ginfo_encode(H5F_t H5_ATTR_UNUSED *f, hbool_t H5_ATTR_UNUSED disable_shared, *p++ = H5O_GINFO_VERSION; /* The flags for the group info */ - H5_CHECKED_ASSIGN(flags, uint8_t, flags | (ginfo->store_est_entry_info ? H5O_GINFO_STORE_EST_ENTRY_INFO : 0), int); + flags = (unsigned char)(flags | (ginfo->store_est_entry_info ? H5O_GINFO_STORE_EST_ENTRY_INFO : 0)); *p++ = flags; /* Store the max. # of links to store compactly & the min. # of links to store densely */ |