diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-06 15:25:49 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-06 15:25:49 -0700 |
commit | 80b8deb1e4f9d0b856106031c6a7a629cca7552c (patch) | |
tree | 904372df192e3894d3418fd5adaaa0f41487a5f4 /src/cairo-path-bounds.c | |
parent | 28d47d332aafa81bcbc669603357298cb0a14322 (diff) |
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 'src/cairo-path-bounds.c')
-rw-r--r-- | src/cairo-path-bounds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cairo-path-bounds.c b/src/cairo-path-bounds.c index 670036cfd..48b4393a7 100644 --- a/src/cairo-path-bounds.c +++ b/src/cairo-path-bounds.c @@ -87,13 +87,13 @@ _cairo_path_bounder_add_point (cairo_path_bounder_t *bounder, cairo_point_t *poi if (bounder->has_point) { if (point->x < bounder->min_x) bounder->min_x = point->x; - + if (point->y < bounder->min_y) bounder->min_y = point->y; - + if (point->x > bounder->max_x) bounder->max_x = point->x; - + if (point->y > bounder->max_y) bounder->max_y = point->y; } else { @@ -104,7 +104,7 @@ _cairo_path_bounder_add_point (cairo_path_bounder_t *bounder, cairo_point_t *poi bounder->has_point = 1; } - + return CAIRO_STATUS_SUCCESS; } |