summaryrefslogtreecommitdiffstats
path: root/hl/tools/gif2h5/decompress.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-26 23:24:48 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:24 (GMT)
commitfb8f955a73a41de8fa457424c4622f6dc072f53d (patch)
treed5211375925133398e500dc157819b289b737566 /hl/tools/gif2h5/decompress.c
parent3e4a99d17dcf2ed3df324513114fed58fe9272c6 (diff)
downloadhdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.zip
hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.gz
hdf5-fb8f955a73a41de8fa457424c4622f6dc072f53d.tar.bz2
Revert "fix warnings from Intel compiler"
This reverts commit 8b9338ab57eec0cc8fa5a36c44d7b28e52e9a466.
Diffstat (limited to 'hl/tools/gif2h5/decompress.c')
-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 ee211a3..55081c3 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 = (unsigned char)(GifImageDesc->PackedField & 0x40);
+ Interlace = GifImageDesc->PackedField & 0x40;
/*
* Note that I ignore the possible existence of a local color map. I'm