Browse Source

merge r14017 from the trunk:
r14017 | jonas | 2009-11-03 15:05:02 +0100 (Tue, 03 Nov 2009) | 2 lines
Changed paths:
M /trunk/tests/test/tforin8.pp

* fixed 64 bit compilation

git-svn-id: branches/fixes_2_4@14752 -

paul 15 years ago
parent
commit
af01eee1df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test/tforin8.pp

+ 1 - 1
tests/test/tforin8.pp

@@ -55,7 +55,7 @@ var
 begin
 begin
   List := TMyList.Create;
   List := TMyList.Create;
   for i in List do
   for i in List do
-    WriteLn(Integer(i));
+    WriteLn(PtrUInt(i));
   List := nil;
   List := nil;
 end.
 end.