* Fix strlcomp

git-svn-id: trunk@39567 -
This commit is contained in:
michael 2018-08-04 08:40:25 +00:00
parent 3d740f13e4
commit 20917b4ec2

View File

@ -786,7 +786,7 @@ begin
SetLength(S2, MaxLen);
if S1 > S2 then
Result := 1
else if S2 < S2 then
else if S1 < S2 then
Result := -1
else
Result := 0;