]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Mon, 16 Jan 2012 19:52:19 +0000 (19:52 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Mon, 16 Jan 2012 19:52:19 +0000 (19:52 +0000)
MagickCore/effect.c

index 689d41b8422ca0cc869bec7cd18540273ffe00e4..d6187e2b714adbb354c617dca639d2a173e79642 100644 (file)
@@ -1470,7 +1470,7 @@ static void Hull(const ssize_t x_offset,const ssize_t y_offset,
   const size_t columns,const size_t rows,const int polarity,Quantum *restrict f,
   Quantum *restrict g)
 {
-  Quantum
+  register Quantum
     *p,
     *q,
     *r,
@@ -1489,13 +1489,13 @@ static void Hull(const ssize_t x_offset,const ssize_t y_offset,
 #endif
   for (y=0; y < (ssize_t) rows; y++)
   {
-    SignedQuantum
-      v;
-
-    ssize_t
+    register ssize_t
       i,
       x;
 
+    SignedQuantum
+      v;
+
     i=(2*y+1)+y*columns;
     if (polarity > 0)
       for (x=0; x < (ssize_t) columns; x++)
@@ -1525,13 +1525,13 @@ static void Hull(const ssize_t x_offset,const ssize_t y_offset,
 #endif
   for (y=0; y < (ssize_t) rows; y++)
   {
-    SignedQuantum
-      v;
-
-    ssize_t
+    register ssize_t
       i,
       x;
 
+    SignedQuantum
+      v;
+
     i=(2*y+1)+y*columns;
     if (polarity > 0)
       for (x=0; x < (ssize_t) columns; x++)