2000.04.04 11:28 "Proposed change to tif_lzw.c", by Arvan Pritchard

VC6 level 3 warnings have been largely silenced in libtiff version 3.5.5, but two warnings are produced from tif_lzw.c when compiled with lzw support enabled. This change silences those warnings:

390c390
<                       *op++ = code, occ--;
---
>                       *op++ = (char)code, occ--;
455c455
<                       *op++ = code, occ--;
---
>                       *op++ = (char)code, occ--;

Arvan Pritchard
Informatix Software International Limited
Daedalus House, Station Road, Cambridge, CB1 2RE
arvan.pritchard@informatix.co.uk