23 lines
706 B
Diff
23 lines
706 B
Diff
From 8c5cbc85c397fff55b859b50c4bc2ab7a79571da Mon Sep 17 00:00:00 2001
|
|
From: Cristy <urban-warrior@imagemagick.org>
|
|
Date: Sun, 13 Oct 2019 15:22:43 -0400
|
|
Subject: [PATCH] ...
|
|
|
|
---
|
|
magick/quantize.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/magick/quantize.c b/magick/quantize.c
|
|
index 355d69de7..37f58914a 100644
|
|
--- a/magick/quantize.c
|
|
+++ b/magick/quantize.c
|
|
@@ -3219,7 +3219,7 @@ static int IntensityCompare(const void *x,const void *y)
|
|
color_1=(PixelPacket *) x;
|
|
color_2=(PixelPacket *) y;
|
|
intensity=(ssize_t) PixelPacketIntensity(color_1)-
|
|
- (ssize_t) PixelPacketIntensity(color_2));
|
|
+ (ssize_t) PixelPacketIntensity(color_2);
|
|
return((int) intensity);
|
|
}
|
|
|