mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 16:18:28 +02:00
* small 64 bit compatibility fixes
git-svn-id: trunk@8858 -
This commit is contained in:
parent
63a73870cf
commit
adbd4cd6c7
@ -460,7 +460,7 @@ BEGIN
|
||||
if (application<>nil) and (ideapp.displaymode=dmIDE) then
|
||||
begin
|
||||
P.l1:=SeenExitCode;
|
||||
ErrS:=hexstr(longint(SeenErrorAddr),8);
|
||||
ErrS:=hexstr(PtrUInt(SeenErrorAddr),sizeof(PtrUInt)*2);
|
||||
P.s:=@ErrS;
|
||||
if OKCancelBox(error_programexitedwitherror,@P)=cmCancel then
|
||||
UserWantsToGoOn:=true;
|
||||
|
@ -2676,7 +2676,7 @@ var
|
||||
LI : PEditorLineInfo;
|
||||
begin
|
||||
if AAddress<>0 then
|
||||
inherited AddLine('$'+hexstr(AAddress,8)+S)
|
||||
inherited AddLine('$'+hexstr(AAddress,sizeof(PtrUInt)*2)+S)
|
||||
else
|
||||
inherited AddLine(S);
|
||||
PL:=DisasLines^.At(DisasLines^.count-1);
|
||||
|
Loading…
Reference in New Issue
Block a user