From: kramm Date: Wed, 12 Nov 2008 10:38:17 +0000 (+0000) Subject: c++ compile fix X-Git-Tag: release-0-9-0~835 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=2ce26d808e6296ef01e50b1cbf7417cdca523a08 c++ compile fix --- diff --git a/lib/jpeg.c b/lib/jpeg.c index b0059b8..66882b0 100644 --- a/lib/jpeg.c +++ b/lib/jpeg.c @@ -313,7 +313,7 @@ int jpeg_load(const char*filename, unsigned char**dest, int*_width, int*_height) int width = *_width = cinfo.output_width; int height = *_height = cinfo.output_height; - *dest = malloc(width*height*4); + *dest = (unsigned char*)malloc(width*height*4); int y; for (y=0;y