1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00
svn path=/trunk/timing/; revision=5492
This commit is contained in:
brendan 2003-10-20 16:32:55 +00:00
parent 5a30452547
commit 56f94c7dcb

View File

@ -42,7 +42,7 @@ uint64_t timing_get_time(void)
struct timeb t;
ftime(&t);
return t.time * 1000 + t.millitm)
return t.time * 1000 + t.millitm;
#else
return timeGetTime();
#endif