]> granicus.if.org Git - imagemagick/commitdiff
Formatting.
authordirk <dirk@git.imagemagick.org>
Thu, 29 May 2014 06:31:05 +0000 (06:31 +0000)
committerdirk <dirk@git.imagemagick.org>
Thu, 29 May 2014 06:31:05 +0000 (06:31 +0000)
coders/psd.c

index 59fc621c0f51017e739315115895073e987142d9..0afe07abfb4eaceccda53eeb343fbcd9feaf988f 100644 (file)
@@ -1642,7 +1642,7 @@ static Image *ReadPSDImage(const ImageInfo *image_info,
   if (psd_info.mode == CMYKMode)
     {
       SetImageColorspace(image,CMYKColorspace,exception);
-      image->alpha_trait = psd_info.channels > 4 ? BlendPixelTrait :
+      image->alpha_trait=psd_info.channels > 4 ? BlendPixelTrait :
         UndefinedPixelTrait;
     }
   else if ((psd_info.mode == BitmapMode) || (psd_info.mode == GrayscaleMode) ||
@@ -1656,11 +1656,11 @@ static Image *ReadPSDImage(const ImageInfo *image_info,
         (void) LogMagickEvent(CoderEvent,GetMagickModule(),
           "  Image colormap allocated");
       SetImageColorspace(image,GRAYColorspace,exception);
-      image->alpha_trait = psd_info.channels > 1 ? BlendPixelTrait :
+      image->alpha_trait=psd_info.channels > 1 ? BlendPixelTrait :
         UndefinedPixelTrait;
     }
   else
-    image->alpha_trait = psd_info.channels > 3 ? BlendPixelTrait :
+    image->alpha_trait=psd_info.channels > 3 ? BlendPixelTrait :
       UndefinedPixelTrait;
   /*
     Read PSD raster colormap only present for indexed and duotone images.