]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sat, 1 Feb 2014 22:06:05 +0000 (22:06 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sat, 1 Feb 2014 22:06:05 +0000 (22:06 +0000)
MagickCore/feature.c

index 886990002ab38cb09cb998432b7c1c42c1da0a1f..0388b82939c6056ea42cc0027c1ae14ee7ef28e9 100644 (file)
@@ -140,7 +140,7 @@ static inline double MagickLog10(const double x)
 {
 #define Log10Epsilon  (1.0e-15)
 
- if ((fabs(x) < Log10Epsilon)
+ if (fabs(x) < Log10Epsilon)
    return(log10(fabs(Log10Epsilon)));
  return(log10(fabs(x)));
 }