Commit 777bd376 authored by michael's avatar michael

nut files in cygwin patch by ("Sascha Sommer" <saschasommer at freenet dot de>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3054 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 87dfa034
......@@ -70,7 +70,7 @@ static int file_write(URLContext *h, unsigned char *buf, int size)
static offset_t file_seek(URLContext *h, offset_t pos, int whence)
{
int fd = (size_t)h->priv_data;
#ifdef CONFIG_WIN32
#if defined(CONFIG_WIN32) && !defined(__CYGWIN__)
return _lseeki64(fd, pos, whence);
#else
return lseek(fd, pos, whence);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment