mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-24 02:19:24 +02:00
* Fix bug found by new hint.
git-svn-id: trunk@7818 -
This commit is contained in:
parent
45832d4314
commit
7c124b3817
@ -958,7 +958,7 @@ Var
|
||||
|
||||
begin
|
||||
DecodeTime(AValue,H,M,S,MS);
|
||||
Result:=((M+(H+((DayOfTheYear(AValue)-1)*24))*60)*60+S)*1000+MS;
|
||||
Result:=((M+(H+((int64(DayOfTheYear(AValue))-1)*24))*60)*60+S)*1000+MS;
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user