diff options
author | kmu <kmu@jelly.ad.hdfgroup.org> | 2019-11-07 20:34:13 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:23 (GMT) |
commit | 6725222332ded4dd7324f61a73299d889a4ae571 (patch) | |
tree | 3092f832d185062f062347b172104ad0b95b17cf /hl/tools | |
parent | d1d4635550d989a887db98791213c455894b48eb (diff) | |
download | hdf5-6725222332ded4dd7324f61a73299d889a4ae571.zip hdf5-6725222332ded4dd7324f61a73299d889a4ae571.tar.gz hdf5-6725222332ded4dd7324f61a73299d889a4ae571.tar.bz2 |
fix warnings from Intel compiler
Diffstat (limited to 'hl/tools')
-rw-r--r-- | hl/tools/gif2h5/decompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/tools/gif2h5/decompress.c b/hl/tools/gif2h5/decompress.c index 55081c3..ee211a3 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 |