summaryrefslogtreecommitdiff
path: root/test/clip-nesting.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
commit80b8deb1e4f9d0b856106031c6a7a629cca7552c (patch)
tree904372df192e3894d3418fd5adaaa0f41487a5f4 /test/clip-nesting.c
parent28d47d332aafa81bcbc669603357298cb0a14322 (diff)
downloadcairo-80b8deb1e4f9d0b856106031c6a7a629cca7552c.tar.gz
Remove extraneous whitespace from "blank" lines.
This patch was produced with the following (GNU) sed script: sed -i -r -e 's/^[ \t]+$//' run on all *.[ch] files within cairo.
Diffstat (limited to 'test/clip-nesting.c')
-rw-r--r--test/clip-nesting.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clip-nesting.c b/test/clip-nesting.c
index 801978037..1f27c8ffa 100644
--- a/test/clip-nesting.c
+++ b/test/clip-nesting.c
@@ -48,7 +48,7 @@ draw (cairo_t *cr, int width, int height)
cr2 = cairo_create (target_surface);
/* Draw a diagonal line and clip to it */
-
+
cairo_move_to (cr2, BORDER, BORDER);
cairo_line_to (cr2, BORDER + LINE_WIDTH, BORDER);
cairo_line_to (cr2, SIZE - BORDER, SIZE - BORDER);
@@ -86,7 +86,7 @@ draw (cairo_t *cr, int width, int height)
BORDER, BORDER,
LINE_WIDTH, SIZE - 2 * BORDER);
cairo_fill (cr);
-
+
return CAIRO_TEST_SUCCESS;
}