summaryrefslogtreecommitdiff
path: root/src/plot/api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plot/api.c')
-rw-r--r--src/plot/api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plot/api.c b/src/plot/api.c
index a3f212d..95644cc 100644
--- a/src/plot/api.c
+++ b/src/plot/api.c
@@ -79,7 +79,7 @@ bool nsfb_plot_lines(nsfb_t *nsfb, int linec, nsfb_bbox_t *line, nsfb_plot_pen_t
return nsfb->plotter_fns->line(nsfb, linec, line, pen);
}
-bool nsfb_plot_polylines(nsfb_t *nsfb, int pointc, nsfb_point_t *points, nsfb_plot_pen_t *pen)
+bool nsfb_plot_polylines(nsfb_t *nsfb, int pointc, const nsfb_point_t *points, nsfb_plot_pen_t *pen)
{
return nsfb->plotter_fns->polylines(nsfb, pointc, points, pen);
}