mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-11 01:48:17 +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
|
||||
Hex: array[0..15] of char='0123456789ABCDEF';
|
||||
var
|
||||
UsedLen: PtrUInt;
|
||||
ResultLen: PtrUInt;
|
||||
UsedLen: PtrInt;
|
||||
ResultLen: PtrInt;
|
||||
Src: PChar;
|
||||
Dest: PChar;
|
||||
c: Char;
|
||||
|
Loading…
Reference in New Issue
Block a user