summaryrefslogtreecommitdiffstats
path: root/src/H5Olinfo.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-25 21:17:55 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:23 (GMT)
commit9a3a13cacb2c519a5c4deab817606a743e9ece0d (patch)
tree301966796df9631e883d1fe728f5e168ca96a353 /src/H5Olinfo.c
parentbb53a566e8a45490b3179290774c3f1450d7d8dd (diff)
downloadhdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.zip
hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.gz
hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.bz2
using a different MACRO
Diffstat (limited to 'src/H5Olinfo.c')
-rw-r--r--src/H5Olinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Olinfo.c b/src/H5Olinfo.c
index f605e8e..9e57185 100644
--- a/src/H5Olinfo.c
+++ b/src/H5Olinfo.c
@@ -203,7 +203,7 @@ H5O_linfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, co
*p++ = H5O_LINFO_VERSION;
/* The flags for the link indices */
- ASSIGN_TO_SMALLER_SIZE(index_flags, uint8_t, linfo->track_corder ? H5O_LINFO_TRACK_CORDER : 0, int);
+ H5_CHECKED_ASSIGN(index_flags, uint8_t, linfo->track_corder ? H5O_LINFO_TRACK_CORDER : 0, int);
index_flags = (uint8_t)(index_flags | (linfo->index_corder ? H5O_LINFO_INDEX_CORDER : 0));
*p++ = index_flags;