mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 14:32:24 +00:00
array size 32 is not enough with some ulm oberon library files.
vmake crashed - out of array bounds error. fixed.
This commit is contained in:
parent
1527f30aa3
commit
6b18777353
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