From f2c664a04fa6cf49b3719a0cc4c59f57bab04948 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 20 Nov 2014 12:32:01 +0100 Subject: use pixman images for storage --- color.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'color.c') diff --git a/color.c b/color.c index 510b16d..35a3713 100644 --- a/color.c +++ b/color.c @@ -70,7 +70,7 @@ color_calchist(struct ida_image *img, struct ida_coledit *me) unsigned char *pix; unsigned int i,x,y,max; - pix = img->data; + pix = (void*)pixman_image_get_data(img->p); for (y = 0; y < img->i.height; y++) { for (x = 0; x < img->i.width; x++) { me->red.data[pix[0]]++; -- cgit