summaryrefslogtreecommitdiff
path: root/tests/audiogen.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-10-15 01:22:50 +0000
committerMike Melanson <mike@multimedia.cx>2003-10-15 01:22:50 +0000
commitbaf23f0c104aad042c9a554dcf5ff14d92506585 (patch)
tree49a512f6c4eb19d1709952c051226e19b5099e41 /tests/audiogen.c
parentffaa816ee3d4654b3082b90f5e02d5d71fae5cfb (diff)
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.c2
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;