mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 20:39:34 +02:00
* use PtrUInt instead of Cardinal in GenericAnsiStrLComp and GenericAnsiStrLIComp, resolves #29815
git-svn-id: trunk@33218 -
This commit is contained in:
parent
0bfdfe20ea
commit
8b81ce7e25
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user