diff options
Diffstat (limited to 'src/2geom/svg-path.cpp')
| -rw-r--r-- | src/2geom/svg-path.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/2geom/svg-path.cpp b/src/2geom/svg-path.cpp index bed04d3ff..898c72bf5 100644 --- a/src/2geom/svg-path.cpp +++ b/src/2geom/svg-path.cpp @@ -35,7 +35,8 @@ namespace Geom { void output(Curve const &curve, SVGPathSink &sink) { - std::vector<Point> pts = sbasis_to_bezier(curve.toSBasis(), 2); //TODO: use something better! + std::vector<Point> pts; + sbasis_to_bezier(pts, curve.toSBasis(), 2); //TODO: use something better! sink.curveTo(pts[0], pts[1], pts[2]); } |
