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/H5Olink.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/H5Olink.c')
-rw-r--r-- | src/H5Olink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Olink.c b/src/H5Olink.c index 4bd952b..1f0c6c7 100644 --- a/src/H5Olink.c +++ b/src/H5Olink.c @@ -316,7 +316,7 @@ H5O_link_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, con /* Store the type of a non-default link */ if(link_flags & H5O_LINK_STORE_LINK_TYPE) - *p++ = lnk->type; + *p++ = (uint8_t)lnk->type; /* Store the link creation order in the file, if its valid */ if(lnk->corder_valid) |