* Fix another bug found by new hint.

git-svn-id: trunk@7819 -
This commit is contained in:
daniel 2007-06-26 08:24:09 +00:00
parent 7c124b3817
commit f77150fa71

View File

@ -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;