mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 21:32:26 +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;
|
||||
|
||||
TYPE
|
||||
ModuleName = ARRAY 32 OF CHAR;
|
||||
ModuleName = ARRAY 64 OF CHAR;
|
||||
Import = POINTER TO ImportDesc;
|
||||
Module = POINTER TO ModuleDesc;
|
||||
ModuleDesc = RECORD
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue