diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2013-03-12 16:45:13 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 20:06:31 +0100 |
commit | 713ac21097555722257343494f83999068006653 (patch) | |
tree | e0966367ec54f4a78ba494dc4088b106da723889 /libavformat/os_support.h | |
parent | 6a701306db167a70b29a9a5aed3aaf7d8c369716 (diff) | |
download | ffmpeg-713ac21097555722257343494f83999068006653.tar.gz |
avutil/os_support: use 64-bit fstat/lseek variants for MSVC as well
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r-- | libavformat/os_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h index b06cefd45e..e5f31e05a4 100644 --- a/libavformat/os_support.h +++ b/libavformat/os_support.h @@ -31,7 +31,7 @@ #include <sys/stat.h> -#if defined(__MINGW32__) && !defined(__MINGW32CE__) +#if defined(_WIN32) && !defined(__MINGW32CE__) # include <fcntl.h> # ifdef lseek # undef lseek |