diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2013-03-12 16:45:13 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-03-27 19:05:58 +0200 |
commit | 85a46ad685048f0c389f0f997c6e33e5546d0b3b (patch) | |
tree | 1e2f6907fbd5784fd9eeb7298c57c096fd7b5e7b /libavformat/os_support.h | |
parent | ad04025987e5c926ae5bde8947a44b3f1346e64c (diff) | |
download | ffmpeg-85a46ad685048f0c389f0f997c6e33e5546d0b3b.tar.gz |
win32: Use 64-bit fstat/lseek variants for MSVC as well
Signed-off-by: Martin Storsjö <martin@martin.st>
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 c5d3ab4b33..39d4cb6519 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> # define lseek(f,p,w) _lseeki64((f), (p), (w)) # define stat _stati64 |