aboutsummaryrefslogtreecommitdiffstats
path: root/libart_lgpl/art_bpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'libart_lgpl/art_bpath.c')
-rw-r--r--libart_lgpl/art_bpath.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libart_lgpl/art_bpath.c b/libart_lgpl/art_bpath.c
index a25acbf95d..8c8dad0480 100644
--- a/libart_lgpl/art_bpath.c
+++ b/libart_lgpl/art_bpath.c
@@ -24,7 +24,6 @@
#include <math.h>
-
/**
* art_bpath_affine_transform: Affine transform an #ArtBpath.
* @src: The source #ArtBpath.
@@ -39,13 +38,13 @@
* Return value: the transformed #ArtBpath.
**/
ArtBpath *
-art_bpath_affine_transform (const ArtBpath *src, const double matrix[6])
+art_bpath_affine_transform (const ArtBpath *src, const gdouble matrix[6])
{
- int i;
- int size;
+ gint i;
+ gint size;
ArtBpath *new;
ArtPathcode code;
- double x, y;
+ gdouble x, y;
for (i = 0; src[i].code != ART_END; i++);
size = i;