Mercurial > libavformat.hg
diff os_support.c @ 448:66217205fe4e libavformat
cygwin patch by ("Sascha Sommer" <saschasommer at freenet dot de>)
| author | michael |
|---|---|
| date | Sat, 24 Apr 2004 11:51:38 +0000 |
| parents | afbe3a5aae02 |
| children | 4f2b5cb90216 |
line wrap: on
line diff
--- a/os_support.c Fri Apr 23 21:02:01 2004 +0000 +++ b/os_support.c Sat Apr 24 11:51:38 2004 +0000 @@ -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
