mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 17:39:20 +02:00
lazlogger: use PtrInt for String length instead of PtrUInt since SetLength() works with integer anyway
git-svn-id: trunk@36445 -
This commit is contained in:
parent
4359f97587
commit
e133b24a34
@ -627,8 +627,8 @@ function DbgStr(const p: PChar; Len: PtrInt): string;
|
|||||||
const
|
const
|
||||||
Hex: array[0..15] of char='0123456789ABCDEF';
|
Hex: array[0..15] of char='0123456789ABCDEF';
|
||||||
var
|
var
|
||||||
UsedLen: PtrUInt;
|
UsedLen: PtrInt;
|
||||||
ResultLen: PtrUInt;
|
ResultLen: PtrInt;
|
||||||
Src: PChar;
|
Src: PChar;
|
||||||
Dest: PChar;
|
Dest: PChar;
|
||||||
c: Char;
|
c: Char;
|
||||||
|
Loading…
Reference in New Issue
Block a user