1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

fopen "r" -> "rb"

Originally committed as revision 3772 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-12-23 20:13:59 +00:00
parent 6c55fd7968
commit 0d6d0cf953

View File

@ -106,8 +106,8 @@ int main(int argc,char* argv[]){
return -1;
}
f[0]= fopen(argv[1], "r");
f[1]= fopen(argv[2], "r");
f[0]= fopen(argv[1], "rb");
f[1]= fopen(argv[2], "rb");
for(i=0;;){
if( fread(buf[0], SIZE, 1, f[0]) != 1) break;