From f3ec2d46bae60984cb9d0a26e94a2cc298b4f06d Mon Sep 17 00:00:00 2001 From: Slavik Gnatenko Date: Sat, 11 Jan 2003 20:34:38 +0000 Subject: os2 support patch by ("Slavik Gnatenko" ) Originally committed as revision 1447 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/file.c') diff --git a/libavformat/file.c b/libavformat/file.c index 7390962864..a84823a378 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -42,7 +42,7 @@ static int file_open(URLContext *h, const char *filename, int flags) } else { access = O_RDONLY; } -#ifdef CONFIG_WIN32 +#if defined(CONFIG_WIN32) || defined(CONFIG_OS2) access |= O_BINARY; #endif fd = open(filename, access, 0666); -- cgit v1.2.3