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:
paul 2012-03-30 08:21:38 +00:00
parent 4359f97587
commit e133b24a34

View File

@ -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;