1
0
forked from aniani/vim

updated for version 7.1-232

This commit is contained in:
Bram Moolenaar
2008-01-18 10:40:55 +00:00
parent 21b17e7741
commit b3c7098365
3 changed files with 4 additions and 2 deletions

View File

@@ -916,7 +916,7 @@ profile_setlimit(msec, tm)
QueryPerformanceCounter(tm);
QueryPerformanceFrequency(&fr);
tm->QuadPart += (double)msec / 1000.0 * (double)fr.QuadPart;
tm->QuadPart += (LONGLONG)((double)msec / 1000.0 * (double)fr.QuadPart);
# else
long usec;