Originally committed as revision 9971 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2007-08-07 00:46:36 +00:00
parent a8482aab87
commit a9bb28a315
1 changed files with 1 additions and 1 deletions

View File

@ -3169,7 +3169,7 @@ static int64_t getutime(void)
GetProcessTimes(proc, &c, &e, &k, &u);
return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
#else
return av_gettime();
return av_gettime();
#endif
}