diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 22:44:16 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 23:22:28 +0800 |
commit | 4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9 (patch) | |
tree | ce1154c5d7487fbd566c5b68df90fb8259b4604e /libart_lgpl/art_svp_vpath.c | |
parent | e6c42ecc596fb16247e8d1d591a5d244a61d0e24 (diff) | |
download | gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.gz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.bz2 gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.lz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.xz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.zst gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'libart_lgpl/art_svp_vpath.c')
-rw-r--r-- | libart_lgpl/art_svp_vpath.c | 16 |
1 files changed, 8 insertions, 8 deletions
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); |