From f77150fa71d9aab7d37139564846c23996d52f00 Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 26 Jun 2007 08:24:09 +0000 Subject: [PATCH] * Fix another bug found by new hint. git-svn-id: trunk@7819 - --- rtl/unix/dos.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/unix/dos.pp b/rtl/unix/dos.pp index 7d6858a0d8..995a677a64 100644 --- a/rtl/unix/dos.pp +++ b/rtl/unix/dos.pp @@ -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;