summaryrefslogtreecommitdiffstats
path: root/hl/tools/gif2h5/decompress.c
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-03-25 15:25:59 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-03-25 15:25:59 (GMT)
commit299deb64fb087c2b74649645769f8a873627fa31 (patch)
treee4e57ff508b5889b74e99455738c08e11d88bb91 /hl/tools/gif2h5/decompress.c
parent460b629e0384bd8780e0a47407d4b33a8e02b1f4 (diff)
downloadhdf5-299deb64fb087c2b74649645769f8a873627fa31.zip
hdf5-299deb64fb087c2b74649645769f8a873627fa31.tar.gz
hdf5-299deb64fb087c2b74649645769f8a873627fa31.tar.bz2
[svn-r26575] Removed compiler warning for hl/tools and hl/src.
HDF5-250 and HDF5-241 tested: h5committest
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 d4e4cdc..ef2d78a 100644
--- a/hl/tools/gif2h5/decompress.c
+++ b/hl/tools/gif2h5/decompress.c
@@ -90,7 +90,7 @@ ReadCode(void)
RawCode += (0x10000 * Raster[ByteOffset + 2]);
RawCode >>= (BitOffset % 8);
- BitOffset += CodeSize;
+ BitOffset += (int)CodeSize;
return (RawCode & ReadMask);
}