diff options
author | kmu <kmu@hdfgroup.org> | 2019-12-06 20:12:57 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2019-12-06 20:12:57 (GMT) |
commit | 189935ff260cae6fb4e061fa68bd7b93e219c635 (patch) | |
tree | 835e1ace051ca3cd146ee86b62b884a96fc04721 /src/H5Ofsinfo.c | |
parent | 132fa33dad6badacec90e80768d8dc8e8aa33172 (diff) | |
download | hdf5-189935ff260cae6fb4e061fa68bd7b93e219c635.zip hdf5-189935ff260cae6fb4e061fa68bd7b93e219c635.tar.gz hdf5-189935ff260cae6fb4e061fa68bd7b93e219c635.tar.bz2 |
remove unnecessary check macro
Diffstat (limited to 'src/H5Ofsinfo.c')
-rw-r--r-- | src/H5Ofsinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Ofsinfo.c b/src/H5Ofsinfo.c index 212475e..25a6754 100644 --- a/src/H5Ofsinfo.c +++ b/src/H5Ofsinfo.c @@ -223,8 +223,8 @@ H5O_fsinfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, c HDassert(p); HDassert(fsinfo); - *p++ = (uint8_t)fsinfo->version; /* message version */ - H5_CHECKED_ASSIGN(*p++, uint8_t, fsinfo->strategy, unsigned); /* File space strategy */ + *p++ = (uint8_t)fsinfo->version; /* message version */ + *p++ = (uint8_t)fsinfo->strategy; /* File space strategy */ *p++ = (unsigned char)fsinfo->persist; /* Free-space persist or not */ H5F_ENCODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section size threshold */ |