Browse Source

* use ptrint

peter 21 years ago
parent
commit
10db34aa26
2 changed files with 2 additions and 2 deletions
  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');