diff --git a/apps/apps.c b/apps/apps.c index 5a0560457..fc15a7426 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);