summaryrefslogtreecommitdiff
path: root/monkey/plot.c
diff options
context:
space:
mode:
Diffstat (limited to 'monkey/plot.c')
-rw-r--r--monkey/plot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/monkey/plot.c b/monkey/plot.c
index bd5b0a18f..50f812480 100644
--- a/monkey/plot.c
+++ b/monkey/plot.c
@@ -95,7 +95,7 @@ monkey_plot_clip(const struct rect *clip)
return true;
}
-const struct plotter_table monkey_plotters = {
+static const struct plotter_table plotters = {
.clip = monkey_plot_clip,
.arc = monkey_plot_arc,
.disc = monkey_plot_disc,
@@ -107,3 +107,5 @@ const struct plotter_table monkey_plotters = {
.text = monkey_plot_text,
.option_knockout = true,
};
+
+const struct plotter_table* monkey_plotters = &plotters;