Commit 9bc5c37a5 for imagemagick.org
commit 9bc5c37a56ee9876d8768e6f0178299f11809971
Author: Cristy <urban-warrior@imagemagick.org>
Date: Mon Apr 20 18:39:26 2026 -0400
cosmetic
diff --git a/MagickWand/compare.c b/MagickWand/compare.c
index 357e271a6..25c2dc2b7 100644
--- a/MagickWand/compare.c
+++ b/MagickWand/compare.c
@@ -1526,18 +1526,18 @@ WandExport MagickBooleanType CompareImagesCommand(ImageInfo *image_info,
default:
{
(void) FormatLocaleFile(stderr," red: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[RedPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[RedPixelChannel]);
(void) FormatLocaleFile(stderr," green: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[GreenPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[GreenPixelChannel]);
(void) FormatLocaleFile(stderr," blue: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[BluePixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[BluePixelChannel]);
if (image->alpha_trait != UndefinedPixelTrait)
(void) FormatLocaleFile(stderr," alpha: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[AlphaPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[AlphaPixelChannel]);
break;
}
case CMYKColorspace:
@@ -1545,36 +1545,36 @@ WandExport MagickBooleanType CompareImagesCommand(ImageInfo *image_info,
(void) FormatLocaleFile(stderr," cyan: %.*g\n",
GetMagickPrecision(),channel_distortion[CyanPixelChannel]);
(void) FormatLocaleFile(stderr," magenta: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[MagentaPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[MagentaPixelChannel]);
(void) FormatLocaleFile(stderr," yellow: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[YellowPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[YellowPixelChannel]);
(void) FormatLocaleFile(stderr," black: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[BlackPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[BlackPixelChannel]);
if (image->alpha_trait != UndefinedPixelTrait)
(void) FormatLocaleFile(stderr," alpha: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[AlphaPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[AlphaPixelChannel]);
break;
}
case LinearGRAYColorspace:
case GRAYColorspace:
{
(void) FormatLocaleFile(stderr," gray: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[GrayPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[GrayPixelChannel]);
if (image->alpha_trait != UndefinedPixelTrait)
(void) FormatLocaleFile(stderr," alpha: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[AlphaPixelChannel]);
+ GetMagickPrecision(),scale*
+ channel_distortion[AlphaPixelChannel]);
break;
}
}
(void) FormatLocaleFile(stderr," all: %.*g\n",
- GetMagickPrecision(),
- scale*channel_distortion[MaxPixelChannels]);
+ GetMagickPrecision(),scale*
+ channel_distortion[MaxPixelChannels]);
break;
}
case UndefinedErrorMetric: