瀏覽代碼

* fixed 64 bit compilation

git-svn-id: trunk@14017 -
Jonas Maebe 16 年之前
父節點
當前提交
c49c838270
共有 1 個文件被更改,包括 1 次插入1 次删除
  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.