summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@redhat.com>2012-10-11 04:07:00 -0400
committerSøren Sandmann Pedersen <ssp@redhat.com>2012-10-11 04:08:48 -0400
commitcb4f325ec0e844008075fe89ceb9f634ae41e7c9 (patch)
treee7596ea98dffef3b191dee6ce2e140b3c8177700
parent15b153d633fcfce886c30fee98599fddbf019ee8 (diff)
region: Formatting fix
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.
-rw-r--r--pixman/pixman-region.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/pixman/pixman-region.c b/pixman/pixman-region.c
index 4626f9c..7dbcf9a 100644
--- a/pixman/pixman-region.c
+++ b/pixman/pixman-region.c
@@ -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