mirror of
https://github.com/simh/simh.git
synced 2026-05-04 15:05:39 +00:00
Fix CR builds
On platforms where the translation code default is dynamic, the default table pointer can't be const. Remove const from the table pointer.
This commit is contained in:
@@ -403,7 +403,7 @@ static const int *codeTbl = /* punch translation tabl
|
|||||||
#endif
|
#endif
|
||||||
static struct trans {
|
static struct trans {
|
||||||
const char *const name;
|
const char *const name;
|
||||||
const int *const table;
|
const int *table;
|
||||||
} transcodes[] = {
|
} transcodes[] = {
|
||||||
{ "DEFAULT", o29_code, },
|
{ "DEFAULT", o29_code, },
|
||||||
{ "026", o26_dec_code, },
|
{ "026", o26_dec_code, },
|
||||||
|
|||||||
Reference in New Issue
Block a user