From fb4b9cbc3c15dbeea523fc2373e1e16e598c3e74 Mon Sep 17 00:00:00 2001 From: dirk Date: Sun, 10 Aug 2014 01:53:55 +0000 Subject: [PATCH] Fixed call to PrintChannelPerceptualHash. --- MagickCore/identify.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MagickCore/identify.c b/MagickCore/identify.c index cf7f2e406..9db3d138d 100644 --- a/MagickCore/identify.c +++ b/MagickCore/identify.c @@ -862,14 +862,14 @@ MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file, if (channel_phash != (ChannelPerceptualHash *) NULL) { (void) FormatLocaleFile(file," Channel perceptual hash:\n"); - (void) PrintChannelPerceptualHash(file,RedChannel,"Red, Hue", + (void) PrintChannelPerceptualHash(file,RedPixelChannel,"Red, Hue", channel_phash); - (void) PrintChannelPerceptualHash(file,GreenChannel,"Green, Chroma", + (void) PrintChannelPerceptualHash(file,GreenPixelChannel,"Green, Chroma", channel_phash); - (void) PrintChannelPerceptualHash(file,BlueChannel,"Blue, Luma", + (void) PrintChannelPerceptualHash(file,BluePixelChannel,"Blue, Luma", channel_phash); if (image->alpha_trait == BlendPixelTrait) - (void) PrintChannelPerceptualHash(file,AlphaChannel,"Alpha, Alpha", + (void) PrintChannelPerceptualHash(file,AlphaPixelChannel,"Alpha, Alpha", channel_phash); channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory( channel_phash); -- 2.40.0