From 2ce26d808e6296ef01e50b1cbf7417cdca523a08 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Nov 2008 10:38:17 +0000 Subject: [PATCH] c++ compile fix --- lib/jpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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