* Fix bug found by new hint.

git-svn-id: trunk@7818 -
This commit is contained in:
daniel 2007-06-26 07:52:55 +00:00
parent 45832d4314
commit 7c124b3817

View File

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