From d1920e49f268abad90e5aabed8b65f6ea048a681 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 27 Jul 2007 19:56:52 +0000 Subject: [PATCH] changed datalens to zlib datatype --- lib/modules/swfbits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/swfbits.c b/lib/modules/swfbits.c index 1d9d412..80b151b 100644 --- a/lib/modules/swfbits.c +++ b/lib/modules/swfbits.c @@ -626,7 +626,7 @@ RGBA *swf_JPEG2TagToImage(TAG * tag, int *width, int *height) #ifdef HAVE_ZLIB if(offset) { - U32 datalen = cinfo.output_width*cinfo.output_height; + uLongf datalen = cinfo.output_width*cinfo.output_height; U8* alphadata = (U8*)rfx_alloc(datalen); int error; tag->len = oldtaglen; @@ -915,7 +915,7 @@ void swf_SetLosslessImage(TAG*tag, RGBA*data, int width, int height) RGBA *swf_DefineLosslessBitsTagToImage(TAG * tag, int *dwidth, int *dheight) { int id, format, height, width, pos; - U32 datalen, datalen2; + uLongf datalen, datalen2; int error; int bpp = 1; int cols = 0; -- 1.7.10.4