From: Dirk Lemstra Date: Sat, 25 Nov 2017 09:51:14 +0000 (+0100) Subject: Whitespace. X-Git-Tag: 7.0.7-12~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb2f26c4b674f8b3a1c5b1dc4f7aedd00b0794fb;p=imagemagick Whitespace. --- diff --git a/coders/psd.c b/coders/psd.c index 75ec20e50..f40213f68 100644 --- a/coders/psd.c +++ b/coders/psd.c @@ -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;