From 13ceedd91daa9f476c77929fa9a7198f02de43a2 Mon Sep 17 00:00:00 2001 From: cristy Date: Mon, 2 Dec 2013 17:57:23 +0000 Subject: [PATCH] --- MagickCore/fx.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/MagickCore/fx.c b/MagickCore/fx.c index 5202f46b4..08e22432d 100644 --- a/MagickCore/fx.c +++ b/MagickCore/fx.c @@ -4589,11 +4589,9 @@ MagickExport MagickBooleanType SolarizeImage(Image *image, if ((double) image->colormap[i].red > threshold) image->colormap[i].red=QuantumRange-image->colormap[i].red; if ((double) image->colormap[i].green > threshold) - image->colormap[i].green=QuantumRange- - image->colormap[i].green; + image->colormap[i].green=QuantumRange-image->colormap[i].green; if ((double) image->colormap[i].blue > threshold) - image->colormap[i].blue=QuantumRange- - image->colormap[i].blue; + image->colormap[i].blue=QuantumRange-image->colormap[i].blue; } } /* -- 2.40.0