mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 11:19:40 +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;
|
function GenericAnsiStrLComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
||||||
|
|
||||||
Var I : cardinal;
|
Var I : PtrUInt;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Result:=0;
|
Result:=0;
|
||||||
@ -375,7 +375,7 @@ end;
|
|||||||
|
|
||||||
function GenericAnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
function GenericAnsiStrLIComp(S1, S2: PChar; MaxLen: PtrUInt): PtrInt;
|
||||||
|
|
||||||
Var I : cardinal;
|
Var I : PtrUInt;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Result:=0;
|
Result:=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user