Mercurial > libavformat.hg
diff file.c @ 449:9cff946a8bb8 libavformat
nut files in cygwin patch by ("Sascha Sommer" <saschasommer at freenet dot de>)
| author | michael |
|---|---|
| date | Sat, 24 Apr 2004 13:10:35 +0000 |
| parents | 96f8086bc2ba |
| children | deece487318e |
line wrap: on
line diff
--- a/file.c Sat Apr 24 11:51:38 2004 +0000 +++ b/file.c Sat Apr 24 13:10:35 2004 +0000 @@ -70,7 +70,7 @@ 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);
