mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 10:59:29 +02:00
fixed DbgS(const p: pointer): give enough digits
git-svn-id: trunk@7087 -
This commit is contained in:
parent
d2d702830d
commit
041884d76b
@ -1098,7 +1098,7 @@ end;
|
||||
|
||||
function DbgS(const p: pointer): string;
|
||||
begin
|
||||
Result:=HexStr(PtrInt(p),sizeof(PtrInt));
|
||||
Result:=HexStr(PtrInt(p),2*sizeof(PtrInt));
|
||||
end;
|
||||
|
||||
function DbgS(const e: extended): string;
|
||||
|
@ -1066,7 +1066,7 @@ end;
|
||||
|
||||
function DbgS(const p: pointer): string;
|
||||
begin
|
||||
Result:=HexStr(PtrInt(p),sizeof(PtrInt));
|
||||
Result:=HexStr(PtrInt(p),2*sizeof(PtrInt));
|
||||
end;
|
||||
|
||||
function DbgS(const e: extended): string;
|
||||
|
Loading…
Reference in New Issue
Block a user