summaryrefslogtreecommitdiffstats
path: root/src/H5Oginfo.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-26 23:24:48 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:24 (GMT)
commitfb8f955a73a41de8fa457424c4622f6dc072f53d (patch)
treed5211375925133398e500dc157819b289b737566 /src/H5Oginfo.c
parent3e4a99d17dcf2ed3df324513114fed58fe9272c6 (diff)
downloadhdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.zip
hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.gz
hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.bz2
Revert "fix warnings from Intel compiler"
This reverts commit 8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.
Diffstat (limited to 'src/H5Oginfo.c')
-rw-r--r--src/H5Oginfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c
index abe7879..4b34a52 100644
--- a/src/H5Oginfo.c
+++ b/src/H5Oginfo.c
@@ -183,7 +183,7 @@ H5O_ginfo_encode(H5F_t H5_ATTR_UNUSED *f, hbool_t H5_ATTR_UNUSED disable_shared,
*p++ = H5O_GINFO_VERSION;
/* The flags for the group info */
- flags = (unsigned char)(ginfo->store_link_phase_change ? H5O_GINFO_STORE_PHASE_CHANGE : 0);
+ flags = ginfo->store_link_phase_change ? H5O_GINFO_STORE_PHASE_CHANGE : 0;
flags = (unsigned char)(flags | (ginfo->store_est_entry_info ? H5O_GINFO_STORE_EST_ENTRY_INFO : 0));
*p++ = flags;