]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 22 Jun 2010 11:03:25 +0000 (11:03 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 22 Jun 2010 11:03:25 +0000 (11:03 +0000)
coders/xcf.c
wand/pixel-iterator.c

index 9b3525262e75cba4c94db940b4ebaa8a17d78a7b..8ebd7106842976b88f2c6b9e9e986cba722915cd 100644 (file)
@@ -444,7 +444,8 @@ static MagickBooleanType load_tile_rle(Image *image,Image *tile_image,
   exception=(&image->exception);
   for (i=0; i < (ssize_t) bytes_per_pixel; i++)
   {
-    q=GetAuthenticPixels(tile_image,0,0,tile_image->columns,tile_image->rows,exception);
+    q=GetAuthenticPixels(tile_image,0,0,tile_image->columns,tile_image->rows,
+      exception);
     size=(MagickOffsetType) tile_image->rows*tile_image->columns;
     while (size > 0)
     {
index 1a68cfa143f84889e53395b03148faef96d5f842..b33206800816692721523dcf6fb47c52f75c1ec3 100644 (file)
@@ -397,9 +397,12 @@ WandExport MagickBooleanType PixelClearIteratorException(
 %      pixels.
 %
 */
-WandExport PixelIterator *NewPixelRegionIterator(MagickWand *wand,const ssize_t x,
-  const ssize_t y,const size_t width,const size_t height)
+WandExport PixelIterator *NewPixelRegionIterator(MagickWand *wand,
+  const ssize_t x,const ssize_t y,const size_t width,const size_t height)
 {
+  CacheView
+    *view;
+
   const char
     *quantum;
 
@@ -412,9 +415,6 @@ WandExport PixelIterator *NewPixelRegionIterator(MagickWand *wand,const ssize_t
   size_t
     depth;
 
-  CacheView
-    *view;
-
   assert(wand != (MagickWand *) NULL);
   depth=MAGICKCORE_QUANTUM_DEPTH;
   quantum=GetMagickQuantumDepth(&depth);