* use PtrUInt instead of Cardinal in GenericAnsiStrLComp and GenericAnsiStrLIComp, resolves #29815

git-svn-id: trunk@33218 -
This commit is contained in:
florian 2016-03-11 20:38:48 +00:00
parent 0bfdfe20ea
commit 8b81ce7e25

View File

@ -347,7 +347,7 @@ end;
function GenericAnsiStrLComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
Var I : cardinal;
Var I : PtrUInt;
begin
Result:=0;
@ -375,7 +375,7 @@ end;
function GenericAnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
Var I : cardinal;
Var I : PtrUInt;
begin
Result:=0;