summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-13 17:06:56 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-13 17:06:56 +0100
commitb1994497093380515c59e7ab7c875d4c00e9891d (patch)
tree867f6e598ecccb213bd1867251589fa188d31711 /src
parent32c5ddd068755be2cfbb3a67ff97b115601b8ef4 (diff)
cleanup
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 ||