Browse Source

* fixed 64 bit compilation

git-svn-id: trunk@14017 -
Jonas Maebe 15 years ago
parent
commit
c49c838270
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
   List := TMyList.Create;
   for i in List do
-    WriteLn(Integer(i));
+    WriteLn(PtrUInt(i));
   List := nil;
 end.