From e8743dcbdbd6fa22c7596b3166540b16fd903d98 Mon Sep 17 00:00:00 2001 From: Cristy Date: Tue, 9 Aug 2016 07:04:55 -0400 Subject: [PATCH] ... --- coders/ipl.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/coders/ipl.c b/coders/ipl.c index 96cb87f86..e425098d1 100644 --- a/coders/ipl.c +++ b/coders/ipl.c @@ -625,9 +625,9 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image, p=GetVirtualPixels(image,0,y,image->columns,1,exception); if (p == (const Quantum *) NULL) break; - (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, - GrayQuantum, pixels,exception); - (void) WriteBlob(image, image->columns*image->depth/8, pixels); + (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, + GrayQuantum, pixels,exception); + (void) WriteBlob(image, image->columns*image->depth/8, pixels); } } @@ -637,9 +637,9 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image, p=GetVirtualPixels(image,0,y,image->columns,1,exception); if (p == (const Quantum *) NULL) break; - (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, - RedQuantum, pixels,exception); - (void) WriteBlob(image, image->columns*image->depth/8, pixels); + (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, + RedQuantum, pixels,exception); + (void) WriteBlob(image, image->columns*image->depth/8, pixels); } /* Green frame */ @@ -647,9 +647,9 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image, p=GetVirtualPixels(image,0,y,image->columns,1,exception); if (p == (const Quantum *) NULL) break; - (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, - GreenQuantum, pixels,exception); - (void) WriteBlob(image, image->columns*image->depth/8, pixels); + (void) ExportQuantumPixels(image,(CacheView *) NULL, quantum_info, + GreenQuantum, pixels,exception); + (void) WriteBlob(image, image->columns*image->depth/8, pixels); } /* Blue frame */ for(y = 0; y < (ssize_t) ipl_info.height; y++){ -- 2.40.0