mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:49:19 +02:00
* Fix another bug found by new hint.
git-svn-id: trunk@7819 -
This commit is contained in:
parent
7c124b3817
commit
f77150fa71
@ -297,7 +297,7 @@ var
|
|||||||
{ tz : TimeZone;}
|
{ tz : TimeZone;}
|
||||||
begin
|
begin
|
||||||
FPGetTimeOfDay (@tv, nil {,tz});
|
FPGetTimeOfDay (@tv, nil {,tz});
|
||||||
GetMsCount := tv.tv_Sec * 1000 + tv.tv_uSec div 1000;
|
GetMsCount := int64(tv.tv_Sec) * 1000 + tv.tv_uSec div 1000;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user