From eed22ac4ac0c44c6b69a6ed4e2f81970674c4b05 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 6 Nov 2005 21:11:41 +0000 Subject: [PATCH] Eliminate VC compiler warning. --- apps/apps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/apps.c b/apps/apps.c index 5a05604579..fc15a74266 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -2418,7 +2418,7 @@ double app_tminterval(int stop,int usertime) tmstop.u.LowPart = now.dwLowDateTime; tmstop.u.HighPart = now.dwHighDateTime; - ret = (tmstop.QuadPart - tmstart.QuadPart)*1e-7; + ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart)*1e-7; } return (ret); -- GitLab