Eliminate VC compiler warning.
This commit is contained in:
parent
176a614899
commit
eed22ac4ac
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue