From 4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 29 Aug 2010 10:44:16 -0400 Subject: Coding style and whitespace cleanup. --- libart_lgpl/art_svp_vpath.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 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 47b1931140..b75bbea6f7 100644 --- a/libart_lgpl/art_svp_vpath.c +++ b/libart_lgpl/art_svp_vpath.c @@ -77,8 +77,8 @@ art_svp_from_vpath (ArtVpath *vpath) n_segs = 0; n_segs_max = 16; - svp = (ArtSVP *)art_alloc (sizeof(ArtSVP) + - (n_segs_max - 1) * sizeof(ArtSVPSeg)); + svp = (ArtSVP *)art_alloc (sizeof (ArtSVP) + + (n_segs_max - 1) * sizeof (ArtSVPSeg)); dir = 0; n_points = 0; @@ -98,9 +98,9 @@ art_svp_from_vpath (ArtVpath *vpath) if (n_segs == n_segs_max) { n_segs_max <<= 1; - svp = (ArtSVP *)art_realloc (svp, sizeof(ArtSVP) + + svp = (ArtSVP *)art_realloc (svp, sizeof (ArtSVP) + (n_segs_max - 1) * - sizeof(ArtSVPSeg)); + sizeof (ArtSVPSeg)); } svp->segs[n_segs].n_points = n_points; svp->segs[n_segs].dir = (dir > 0); @@ -140,9 +140,9 @@ art_svp_from_vpath (ArtVpath *vpath) if (n_segs == n_segs_max) { n_segs_max <<= 1; - svp = (ArtSVP *)art_realloc (svp, sizeof(ArtSVP) + + svp = (ArtSVP *)art_realloc (svp, sizeof (ArtSVP) + (n_segs_max - 1) * - sizeof(ArtSVPSeg)); + sizeof (ArtSVPSeg)); } svp->segs[n_segs].n_points = n_points; svp->segs[n_segs].dir = (dir > 0); @@ -186,9 +186,9 @@ art_svp_from_vpath (ArtVpath *vpath) if (n_segs == n_segs_max) { n_segs_max <<= 1; - svp = (ArtSVP *)art_realloc (svp, sizeof(ArtSVP) + + svp = (ArtSVP *)art_realloc (svp, sizeof (ArtSVP) + (n_segs_max - 1) * - sizeof(ArtSVPSeg)); + sizeof (ArtSVPSeg)); } svp->segs[n_segs].n_points = n_points; svp->segs[n_segs].dir = (dir > 0); -- cgit v1.2.3