Commit 1c942d0b authored by michael's avatar michael

fopen "r" -> "rb"


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3772 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ec1c77d6
......@@ -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;
......
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