From: Cristy Date: Tue, 15 Aug 2017 11:28:32 +0000 (-0400) Subject: ... X-Git-Tag: 7.0.6-8~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=074e7a4edd5234d2fa25c2382e65a70d8ddb570a;p=imagemagick ... --- diff --git a/MagickCore/resize.c b/MagickCore/resize.c index cf5311022..4be30eece 100644 --- a/MagickCore/resize.c +++ b/MagickCore/resize.c @@ -507,7 +507,7 @@ static double Spline16(const double x, 2-lobe Spline filter. */ if (x < 1.0) - return(((x-9.0/5.0 )*x-1.0/5.0)*x+1.0); + return(((x-9.0/5.0)*x-1.0/5.0)*x+1.0); if (x < 2.0) return(((-1.0/3.0*(x-1.0)+4.0/5.0)*(x-1.0)-7.0/15.0)*(x-1.0)); return(0.0);