git-svn-id: trunk@9048 -
@@ -295,7 +295,7 @@ begin
end;
'P' : Begin
CheckArg(vtpointer,true);
- ToAdd:=HexStr(ptrint(Args[DoArg].VPointer),sizeof(Ptrint)*2);
+ ToAdd:=HexStr(ptruint(Args[DoArg].VPointer),sizeof(Ptruint)*2);
// Insert ':'. Is this needed in 32 bit ? No it isn't.
// Insert(':',ToAdd,5);
@@ -2166,7 +2166,7 @@ Var
End;
End; { Case }
End; { While .. Begin }
- Result:=PtrInt(Buf)-PtrInt(Buffer);
+ Result:=PtrUInt(Buf)-PtrUInt(Buffer);
Begin
@@ -232,7 +232,7 @@ Var
hstdout : ^text;
begin
hstdout:=@stdout;
- Writeln(hstdout^,'An unhandled exception occurred at $',HexStr(Ptrint(Addr),sizeof(PtrInt)*2),' :');
+ Writeln(hstdout^,'An unhandled exception occurred at $',HexStr(PtrUInt(Addr),sizeof(PtrUInt)*2),' :');
if Obj is exception then
Message:=Exception(Obj).ClassName+' : '+Exception(Obj).Message;