diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-10-15 01:22:50 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-10-15 01:22:50 +0000 |
commit | baf23f0c104aad042c9a554dcf5ff14d92506585 (patch) | |
tree | 49a512f6c4eb19d1709952c051226e19b5099e41 /tests/audiogen.c | |
parent | ffaa816ee3d4654b3082b90f5e02d5d71fae5cfb (diff) | |
download | ffmpeg-baf23f0c104aad042c9a554dcf5ff14d92506585.tar.gz |
use the correct file modes
Originally committed as revision 2381 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/audiogen.c')
-rw-r--r-- | tests/audiogen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/audiogen.c b/tests/audiogen.c index 4913a6ced8..b026a713a6 100644 --- a/tests/audiogen.c +++ b/tests/audiogen.c @@ -94,7 +94,7 @@ int main(int argc, char **argv) exit(1); } - outfile = fopen(argv[1], "w"); + outfile = fopen(argv[1], "wb"); if (!outfile) { perror(argv[1]); return 1; |