summaryrefslogtreecommitdiff
path: root/test/self-copy.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/self-copy.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/self-copy.c')
-rw-r--r--test/self-copy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/self-copy.c b/test/self-copy.c
index 5f4398b25..b0f043259 100644
--- a/test/self-copy.c
+++ b/test/self-copy.c
@@ -40,7 +40,7 @@ draw (cairo_t *cr, int width, int height)
{
cairo_pattern_t *pattern;
cairo_matrix_t matrix;
-
+
/* Paint a diagonal division as a test image */
cairo_set_source_rgb (cr, 1, 1, 1); /* White */
cairo_paint (cr);
@@ -56,10 +56,10 @@ draw (cairo_t *cr, int width, int height)
* offset by SIZE/2
*/
pattern = cairo_pattern_create_for_surface (cairo_get_target (cr));
-
+
cairo_matrix_init_translate (&matrix, - SIZE / 2, - SIZE / 2);
cairo_pattern_set_matrix (pattern, &matrix);
-
+
cairo_set_source (cr, pattern);
cairo_pattern_destroy (pattern);