mirror of
https://github.com/simh/simh.git
synced 2026-02-02 06:42:18 +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
|
||||
static struct trans {
|
||||
const char *const name;
|
||||
const int *const table;
|
||||
const int *table;
|
||||
} transcodes[] = {
|
||||
{ "DEFAULT", o29_code, },
|
||||
{ "026", o26_dec_code, },
|
||||
|
||||
Reference in New Issue
Block a user