diff options
author | Sascha Sommer <saschasommer@freenet.de> | 2004-04-24 11:51:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-24 11:51:38 +0000 |
commit | 2a86d50bd968f02da40e57ca1a7087aa6286ccbb (patch) | |
tree | d6f9a60822dd240e0285136e066be615168d1e4c /libavformat/os_support.c | |
parent | aacc6615f8e3863cd930d3a1ab2cd28d9838f0f5 (diff) | |
download | ffmpeg-2a86d50bd968f02da40e57ca1a7087aa6286ccbb.tar.gz |
cygwin patch by ("Sascha Sommer" <saschasommer at freenet dot de>)
Originally committed as revision 3053 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/os_support.c')
-rw-r--r-- | libavformat/os_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/os_support.c b/libavformat/os_support.c index 219db98c1c..5a2df31022 100644 --- a/libavformat/os_support.c +++ b/libavformat/os_support.c @@ -34,7 +34,7 @@ int64_t av_gettime(void) { #ifdef CONFIG_WIN32 - struct _timeb tb; + struct timeb tb; _ftime(&tb); return ((int64_t)tb.time * int64_t_C(1000) + (int64_t)tb.millitm) * int64_t_C(1000); #else |