summaryrefslogtreecommitdiffstats
path: root/src/H5Ofsinfo.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-26 23:24:48 (GMT)
committerkmu <kmu@hdfgroup.org>2019-11-26 23:24:48 (GMT)
commite0262c8bedf0e59b7b32b02ecd91ed50cf834a1c (patch)
treeb4605ad55c3c2b82218a915fc2322d0f75a4f880 /src/H5Ofsinfo.c
parentbfbd613f53af476fd83ac9e2bfb5855e659eef65 (diff)
downloadhdf5-e0262c8bedf0e59b7b32b02ecd91ed50cf834a1c.zip
hdf5-e0262c8bedf0e59b7b32b02ecd91ed50cf834a1c.tar.gz
hdf5-e0262c8bedf0e59b7b32b02ecd91ed50cf834a1c.tar.bz2
Revert "fix warnings from Intel compiler"
This reverts commit 8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.
Diffstat (limited to 'src/H5Ofsinfo.c')
-rw-r--r--src/H5Ofsinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ofsinfo.c b/src/H5Ofsinfo.c
index fd62aa2..e5e6741 100644
--- a/src/H5Ofsinfo.c
+++ b/src/H5Ofsinfo.c
@@ -224,7 +224,7 @@ H5O_fsinfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, c
HDassert(fsinfo);
*p++ = (uint8_t)fsinfo->version; /* message version */
- *p++ = (uint8_t)fsinfo->strategy; /* File space strategy */
+ *p++ = fsinfo->strategy; /* File space strategy */
*p++ = (unsigned char)fsinfo->persist; /* Free-space persist or not */
H5F_ENCODE_LENGTH(f, p, fsinfo->threshold); /* Free-space section size threshold */