Commit eed22ac4 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Eliminate VC compiler warning.

parent 176a6148
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);