FIX: ARM64 unix time type

This commit is contained in:
Alexander Koblov 2021-03-13 13:09:25 +03:00
commit 4ccca241e2

View file

@ -48,7 +48,7 @@ const
type
{$IF DEFINED(LINUX)}
TUnixTime = UIntPtr;
TUnixTime = {$IFDEF CPUAARCH64}Int64{$ELSE}UIntPtr{$ENDIF};
TUnixMode = Cardinal;
{$ELSE}
TUnixTime = TTime;