summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/flcurve.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/flcurve.cxx b/src/flcurve.cxx
index ca0d901..94908bc 100644
--- a/src/flcurve.cxx
+++ b/src/flcurve.cxx
@@ -72,8 +72,6 @@ parse_curve(CurveEditor *ce, const char *ctrl_points) {
char *pstr, *buf = strdup(ctrl_points);
int i, n = 0;
double X, Y;
- gsl_interp_accel *acc;
- gsl_spline *spline;
while (pstr = strsep(&buf, ";")) {
if (sscanf(pstr, "%lf,%lf", &X, &Y) != 2 ||