From 8e72d32a09668cd3933d39b8e6eeb9f949d2c759 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 8 Mar 2018 04:24:25 -0800 Subject: [PATCH] I1620: Add a 3.10 compatibility CONST declaration --- I1620/i1620_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I1620/i1620_cpu.c b/I1620/i1620_cpu.c index 3e08a47b..dc0e80d1 100644 --- a/I1620/i1620_cpu.c +++ b/I1620/i1620_cpu.c @@ -2428,7 +2428,7 @@ return SCPE_OK; t_stat cpu_show_hist (FILE *st, UNIT *uptr, int32 val, CONST void *desc) { int32 i, k, di, lnt; -const char *cptr = (const char *) desc; +CONST char *cptr = (CONST char *) desc; t_value sim_eval[INST_LEN]; t_stat r; InstHistory *h;