mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 21:51:42 +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;}
|
||||
begin
|
||||
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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user