Commit ea417ac8a for imagemagick.org
commit ea417ac8adb2536ec5ab6f18e1a4174bbae032b2
Author: Cristy <urban-warrior@imagemagick.org>
Date: Sat May 31 12:56:17 2025 -0400
eliminate compiler exception
diff --git a/MagickCore/compare.c b/MagickCore/compare.c
index 8b30c4d7d..26c52f55e 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];