]> granicus.if.org Git - imagemagick/commitdiff
Whitespace.
authorDirk Lemstra <dirk@git.imagemagick.org>
Sat, 25 Nov 2017 09:51:14 +0000 (10:51 +0100)
committerDirk Lemstra <dirk@git.imagemagick.org>
Sat, 25 Nov 2017 09:51:47 +0000 (10:51 +0100)
coders/psd.c

index 75ec20e50adfc7d8f30ca7c58ba3c8b8e2f9ccf8..f40213f688b7238ea2d63bf4c17bce1f54f9bf11 100644 (file)
@@ -1278,26 +1278,26 @@ static MagickBooleanType ReadPSDChannelZip(Image *image,const size_t channels,
     }
 
   if (compression == ZipWithPrediction)
-  {
-     p=pixels;
-     while (count > 0)
-     {
-       length=image->columns;
-       while (--length)
-       {
-         if (packet_size == 2)
-           {
-             p[2]+=p[0]+((p[1]+p[3]) >> 8);
-             p[3]+=p[1];
-           }
-         else
-          *(p+1)+=*p;
-         p+=packet_size;
-       }
-       p+=packet_size;
-       count-=row_size;
-     }
-  }
+    {
+      p=pixels;
+      while (count > 0)
+      {
+        length=image->columns;
+        while (--length)
+        {
+          if (packet_size == 2)
+            {
+              p[2]+=p[0]+((p[1]+p[3]) >> 8);
+              p[3]+=p[1];
+            }
+          else
+            *(p+1)+=*p;
+          p+=packet_size;
+        }
+        p+=packet_size;
+        count-=row_size;
+      }
+    }
 
   status=MagickTrue;
   p=pixels;