1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-17 12:54:40 +00:00

M-x untabify

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17042 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2005-11-23 19:29:11 +00:00
parent f233bb2a73
commit 3223220d27

View File

@ -9,8 +9,8 @@
#ifdef __MINGW32__
#include <sys/timeb.h>
void gettimeofday(struct timeval* t,void* timezone)
{ struct timeb timebuffer;
void gettimeofday(struct timeval* t,void* timezone) {
struct timeb timebuffer;
ftime( &timebuffer );
t->tv_sec=timebuffer.time;
t->tv_usec=1000*timebuffer.millitm;