]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Mon, 6 May 2013 12:16:17 +0000 (12:16 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Mon, 6 May 2013 12:16:17 +0000 (12:16 +0000)
MagickCore/colorspace.c

index fc6a267c0cfd2c82e1dc9e140e4f4f24233e75c8..830c6beb23e31c2c02d6ae4ce7d62a0f785df746 100644 (file)
@@ -1198,7 +1198,7 @@ static inline void ConvertLuvToRGB(const double L,const double u,
     Y,
     Z;
 
-  ConvertLuvToXYZ(100.0*L,(354.0*u-134.0),262.0*v-140.0,&X,&Y,&Z);
+  ConvertLuvToXYZ(100.0*L,354.0*u-134.0,262.0*v-140.0,&X,&Y,&Z);
   ConvertXYZToRGB(X,Y,Z,red,green,blue);
 }