mirror of
https://github.com/open-simh/simh.git
synced 2026-01-14 07:40:35 +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:
parent
0cc3783711
commit
6a9c60c7e7
@ -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, },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user