From 5d0878967ee21a039ef599222b1cf3eb606354d4 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 20 Jun 2010 06:56:06 -0400 Subject: Coding style and whitespace cleanup. --- libart_lgpl/art_svp_vpath.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'libart_lgpl/art_svp_vpath.c') diff --git a/libart_lgpl/art_svp_vpath.c b/libart_lgpl/art_svp_vpath.c index 196711a400..47b1931140 100644 --- a/libart_lgpl/art_svp_vpath.c +++ b/libart_lgpl/art_svp_vpath.c @@ -30,12 +30,11 @@ #include "art_vpath.h" #include "art_svp.h" - /* reverse a list of points in place */ static void -reverse_points (ArtPoint *points, int n_points) +reverse_points (ArtPoint *points, gint n_points) { - int i; + gint i; ArtPoint tmp_p; for (i = 0; i < (n_points >> 1); i++) @@ -66,15 +65,15 @@ reverse_points (ArtPoint *points, int n_points) ArtSVP * art_svp_from_vpath (ArtVpath *vpath) { - int n_segs, n_segs_max; + gint n_segs, n_segs_max; ArtSVP *svp; - int dir; - int new_dir; - int i; + gint dir; + gint new_dir; + gint i; ArtPoint *points; - int n_points, n_points_max; - double x, y; - double x_min, x_max; + gint n_points, n_points_max; + gdouble x, y; + gdouble x_min, x_max; n_segs = 0; n_segs_max = 16; -- cgit v1.2.3