From ea417ac8adb2536ec5ab6f18e1a4174bbae032b2 Mon Sep 17 00:00:00 2001 From: Cristy Date: Sat, 31 May 2025 12:56:17 -0400 Subject: [PATCH] eliminate compiler exception --- MagickCore/compare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MagickCore/compare.c b/MagickCore/compare.c index 8b30c4d7d4..26c52f55e7 100644 --- a/MagickCore/compare.c +++ b/MagickCore/compare.c @@ -1906,7 +1906,7 @@ MagickExport MagickBooleanType GetImageDistortion(Image *image, } } for (i=0; i < (ssize_t) GetPixelChannels(image); i++) - channel_distortion[i]=MagickMin(MagickMax(channel_distortion[i],0.0),1.0);\ + channel_distortion[i]=MagickMin(MagickMax(channel_distortion[i],0.0),1.0); channel_distortion[CompositePixelChannel]=MagickMin(MagickMax( channel_distortion[CompositePixelChannel],0.0),1.0); *distortion=channel_distortion[CompositePixelChannel];