svgpic: fix warnings

plsvg.c:291:21: warning: variable ‘y2’ set but not used
plsvg.c:291:17: warning: variable ‘x2’ set but not used
This commit is contained in:
David du Colombier 2017-09-01 22:37:59 +02:00
parent cf303e5baa
commit bb044732c6

View file

@ -288,14 +288,12 @@ void circle(double x, double y, double r)
void spline(double x, double y, double n, ofloat *p, int attr, double ddval)
{
int i;
double x1, y1, x2, y2;
double x1, y1;
printf("<path d=\"M %.3f %.3f", xconv(x), yconv(y));
x1 = 0;
y1 = 0;
for (i = 0; i < 2 * n; i += 2) {
x2 = x1;
y2 = y1;
x1 = x;
y1 = y;
x += p[i];