diff options
author | kmu <kmu@hdfgroup.org> | 2019-11-26 23:24:48 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:24 (GMT) |
commit | fb8f955a73a41de8fa457424c4622f6dc072f53d (patch) | |
tree | d5211375925133398e500dc157819b289b737566 /src/H5Olink.c | |
parent | 3e4a99d17dcf2ed3df324513114fed58fe9272c6 (diff) | |
download | hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.zip hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.gz hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.bz2 |
Revert "fix warnings from Intel compiler"
This reverts commit 8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.
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 1f0c6c7..4bd952b 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++ = (uint8_t)lnk->type; + *p++ = lnk->type; /* Store the link creation order in the file, if its valid */ if(lnk->corder_valid) |