Eliminate VC compiler warning.

This commit is contained in:
Andy Polyakov 2005-11-06 21:11:41 +00:00
parent 176a614899
commit eed22ac4ac

View file

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