summaryrefslogtreecommitdiffstats
path: root/test/ntypes.c
diff options
context:
space:
mode:
authorkmu <kmu@jelly.ad.hdfgroup.org>2019-11-07 20:34:13 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:23 (GMT)
commit6725222332ded4dd7324f61a73299d889a4ae571 (patch)
tree3092f832d185062f062347b172104ad0b95b17cf /test/ntypes.c
parentd1d4635550d989a887db98791213c455894b48eb (diff)
downloadhdf5-6725222332ded4dd7324f61a73299d889a4ae571.zip
hdf5-6725222332ded4dd7324f61a73299d889a4ae571.tar.gz
hdf5-6725222332ded4dd7324f61a73299d889a4ae571.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;