peter 21 лет назад
Родитель
Сommit
10db34aa26
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      tests/webtbf/tw0855.pp
  2. 1 1
      tests/webtbf/tw1238.pp

+ 1 - 1
tests/webtbf/tw0855.pp

@@ -5,7 +5,7 @@ type
   TMyRec = record
     x: Integer;
   end;
-  TMyArray = array[LongWord] of TMyRec;
+  TMyArray = array[Ptrint] of TMyRec;
   PMyArray = ^TMyArray;
 var
   a: PMyArray;

+ 1 - 1
tests/webtbf/tw1238.pp

@@ -6,7 +6,7 @@ PROGRAM Concat;
 VAR
   InputFile,OutputFile:File;
   c:Char;
-  Buffer:Array[DWord]OF Byte;
+  Buffer:Array[PtrInt]OF Byte;
   ReadCount,WriteCount:DWord;
 BEGIN
   Assign(OutputFile,'Maple.tar.gz');