From 1c8e4f6fd07a64265dee9abcf02c095ac7bd0a8b Mon Sep 17 00:00:00 2001 From: cristy Date: Mon, 26 May 2014 16:17:53 +0000 Subject: [PATCH] --- MagickCore/fx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MagickCore/fx.c b/MagickCore/fx.c index ff295b894..5e315715d 100644 --- a/MagickCore/fx.c +++ b/MagickCore/fx.c @@ -1736,7 +1736,7 @@ static double FxGetSymbol(FxInfo *fx_info,const PixelChannel channel, if (LocaleNCompare(symbol,"minima",6) == 0) return(FxChannelStatistics(fx_info,image,channel,symbol,exception)); if (LocaleCompare(symbol,"m") == 0) - return(QuantumScale*pixel.blue); + return(QuantumScale*pixel.green); break; } case 'N': @@ -1815,7 +1815,7 @@ static double FxGetSymbol(FxInfo *fx_info,const PixelChannel channel, case 'y': { if (LocaleCompare(symbol,"y") == 0) - return(QuantumScale*pixel.green); + return(QuantumScale*pixel.blue); break; } case 'Z': -- 2.50.1