region: Formatting fix
authorSøren Sandmann Pedersen <ssp@redhat.com>
Thu, 11 Oct 2012 08:07:00 +0000 (04:07 -0400)
committerSøren Sandmann Pedersen <ssp@redhat.com>
Thu, 11 Oct 2012 08:08:48 +0000 (04:08 -0400)
The while part of a do/while loop was formatted as if it were a while
loop with an empty body. Probably some indent tool misinterpreted the
code at some point.

pixman/pixman-region.c

index 4626f9c..7dbcf9a 100644 (file)
@@ -1517,9 +1517,7 @@ quick_sort_rects (
                 r++;
                 i++;
            }
-
-            while (i != numRects && (r->y1 < y1 || (r->y1 == y1 && r->x1 < x1)))
-               ;
+           while (i != numRects && (r->y1 < y1 || (r->y1 == y1 && r->x1 < x1)));
 
            r = &(rects[j]);
             do