* fixed 64 bit compilation

git-svn-id: trunk@14017 -
This commit is contained in:
Jonas Maebe 2009-11-03 14:05:02 +00:00
parent 030379bc57
commit c49c838270

View File

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