diff options
author | kmu <kmu@jelly.ad.hdfgroup.org> | 2019-11-07 20:34:13 (GMT) |
---|---|---|
committer | kmu <kmu@jelly.ad.hdfgroup.org> | 2019-11-07 20:34:13 (GMT) |
commit | 8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466 (patch) | |
tree | f1985055bbea601ded4a545e123d4954ef8529fe /src/H5Olinfo.c | |
parent | afd4b291315e39e3966eadaf8ae9894b30e9504e (diff) | |
download | hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.zip hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.gz hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.bz2 |
fix warnings from Intel compiler
Diffstat (limited to 'src/H5Olinfo.c')
-rw-r--r-- | src/H5Olinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Olinfo.c b/src/H5Olinfo.c index 9827b6a..475f66f 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 */ - index_flags = linfo->track_corder ? H5O_LINFO_TRACK_CORDER : 0; + index_flags = (unsigned char)(linfo->track_corder ? H5O_LINFO_TRACK_CORDER : 0); index_flags = (uint8_t)(index_flags | (linfo->index_corder ? H5O_LINFO_INDEX_CORDER : 0)); *p++ = index_flags; |