From 6ae743798ac66b9d2394d7d86b697206b64a3192 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Mon, 8 May 2017 21:28:44 -0700 Subject: [PATCH] IBM1130: Fix missing CONST in plot declarations (James Fehlinger) --- Ibm1130/ibm1130_plot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ibm1130/ibm1130_plot.c b/Ibm1130/ibm1130_plot.c index 14b61662..5caa58b4 100644 --- a/Ibm1130/ibm1130_plot.c +++ b/Ibm1130/ibm1130_plot.c @@ -134,7 +134,7 @@ static t_stat plot_reset (DEVICE *dptr); /* reset of 1130 */ static t_stat plot_attach (UNIT *uptr, CONST char *cptr); /* attach, loads plotter */ static t_stat plot_detach (UNIT *uptr); /* detach and save image */ static t_stat plot_examine (UNIT *uptr); /* update file with current canvas */ -static t_stat plot_set_length (UNIT *uptr, int32 val, char * ptr, void *desc); /* set paper length */ +static t_stat plot_set_length (UNIT *uptr, int32 val, CONST char * ptr, void *desc); /* set paper length */ static t_stat plot_set_pos (UNIT *uptr, int32 val, CONST char * ptr, void *desc); /* reset current X/Y position */ static t_stat plot_show_vals(FILE *fp, UNIT *uptr, int32 val, CONST void *descrip); /* print x, y and length */ static t_stat plot_show_nl(FILE *fp, UNIT *uptr, int32 val, CONST void *descrip); /* overcome wacky simh behavior */