mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 04:02:25 +00:00
array size 32 is not enough with some ulm oberon library files.
vmake crashed - out of array bounds error. fixed.
Former-commit-id: 6b18777353
This commit is contained in:
parent
e6f1f7a55c
commit
40034cd479
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ MODULE vmake; (*HM 94-06-22 / *)
|
||||||
IMPORT Texts := CmdlnTexts, In := compatIn, Out := Console;
|
IMPORT Texts := CmdlnTexts, In := compatIn, Out := Console;
|
||||||
|
|
||||||
TYPE
|
TYPE
|
||||||
ModuleName = ARRAY 32 OF CHAR;
|
ModuleName = ARRAY 64 OF CHAR;
|
||||||
Import = POINTER TO ImportDesc;
|
Import = POINTER TO ImportDesc;
|
||||||
Module = POINTER TO ModuleDesc;
|
Module = POINTER TO ModuleDesc;
|
||||||
ModuleDesc = RECORD
|
ModuleDesc = RECORD
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue