* Fix strtoint64def

This commit is contained in:
michael 2019-09-27 13:17:06 +00:00
parent ff0cbf12c8
commit 1e31931375

View File

@ -3867,7 +3867,7 @@ function StrToInt64Def(const S: String; ADefault: NativeLargeInt
begin
if TryStrToInt64(S,Result) then
if not TryStrToInt64(S,Result) then
Result:=ADefault;
end;