summaryrefslogtreecommitdiffstats
path: root/hl/tools
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 /hl/tools
parentafd4b291315e39e3966eadaf8ae9894b30e9504e (diff)
downloadhdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.zip
hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.gz
hdf5-8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.tar.bz2
fix warnings from Intel compiler
Diffstat (limited to 'hl/tools')
-rw-r--r--hl/tools/gif2h5/decompress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/tools/gif2h5/decompress.c b/hl/tools/gif2h5/decompress.c
index 6668c22..713ca7e 100644
--- a/hl/tools/gif2h5/decompress.c
+++ b/hl/tools/gif2h5/decompress.c
@@ -173,7 +173,7 @@ Decompress(GIFIMAGEDESC *GifImageDesc, GIFHEAD *GifHead)
/* Now read in values from the image descriptor */
IWidth = GifImageDesc->ImageWidth;
IHeight = GifImageDesc->ImageHeight;
- Interlace = GifImageDesc->PackedField & 0x40;
+ Interlace = (unsigned char)(GifImageDesc->PackedField & 0x40);
/*
* Note that I ignore the possible existence of a local color map. I'm