Fix compilation

svn-id: r39549
This commit is contained in:
Max Horn 2009-03-19 23:31:20 +00:00
parent 160acbd9f5
commit 7077ea36e0

View File

@ -144,7 +144,7 @@ void lzwExpand(uint8 *in, uint8 *out, int32 len) {
setBits(START_BITS); /* Starts at 9-bits */
lzwnext = 257; /* Next available code to define */
end = (uint8 *)((uint8)out + (uint8)len);
end = (uint8 *)(out + (uint32)len);
lzwold = inputCode(&in); /* Read in the first code */
c = lzwold;