]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Mon, 24 Apr 2017 16:12:37 +0000 (12:12 -0400)
committerCristy <urban-warrior@imagemagick.org>
Mon, 24 Apr 2017 16:12:37 +0000 (12:12 -0400)
MagickCore/pixel-accessor.h

index 188ca1e557d4479a95ed30e473bc1b16b4ba3963..6c4623696228bc27b038dee261788d76808e316f 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
 static inline Quantum ClampPixel(const MagickRealType value)
 { 
   if (value < 0.0f)
-    return(0); 
+    return((Quantum) 0); 
   if (value >= (MagickRealType) QuantumRange)
     return((Quantum) QuantumRange);
 #if !defined(MAGICKCORE_HDRI_SUPPORT)
@@ -630,7 +630,7 @@ static inline void SetPixelBackgoundColor(const Image *magick_restrict image,
     i;
 
   for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
-    pixel[i]=0;
+    pixel[i]=(Quantum) 0;
   pixel[image->channel_map[RedPixelChannel].offset]=
     ClampToQuantum(image->background_color.red);
   pixel[image->channel_map[GreenPixelChannel].offset]=