summaryrefslogtreecommitdiffstats
path: root/test/ntypes.c
diff options
context:
space:
mode:
authorkmu <kmu@jelly.ad.hdfgroup.org>2019-11-07 20:34:13 (GMT)
committerkmu <kmu@jelly.ad.hdfgroup.org>2019-11-07 20:34:13 (GMT)
commit8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466 (patch)
treef1985055bbea601ded4a545e123d4954ef8529fe /test/ntypes.c
parentafd4b291315e39e3966eadaf8ae9894b30e9504e (diff)
downloadhdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.zip
hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.gz
hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.bz2
fix warnings from Intel compiler
Diffstat (limited to 'test/ntypes.c')
-rw-r--r--test/ntypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ntypes.c b/test/ntypes.c
index 34558f5..f1d2449 100644
--- a/test/ntypes.c
+++ b/test/ntypes.c
@@ -2484,7 +2484,7 @@ test_opaque_dtype(hid_t file)
TEST_ERROR;
for(i = 0; i < sizeof(wbuf); i++)
- wbuf[i] = (unsigned char)0xff ^ (unsigned char)i;
+ wbuf[i] = (unsigned char)(0xff ^ i);
if(H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf) < 0) TEST_ERROR;
if(H5Sclose(space) < 0) TEST_ERROR;