summaryrefslogtreecommitdiff
path: root/doc/examples/hw_decode.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-06-25 00:01:36 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-08-25 18:54:50 +0200
commit68f637b6f94d25f45eee2e9320e0057a548b92e0 (patch)
tree07754a500f5af9719d099502fa1e247bf668b458 /doc/examples/hw_decode.c
parentc8ba0daf8dab2f5cbcdded37cd6383649933fbf3 (diff)
doc/examples: Always open files as "binary", not "text".
Fixes ticket #8638.
Diffstat (limited to 'doc/examples/hw_decode.c')
-rw-r--r--doc/examples/hw_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/hw_decode.c b/doc/examples/hw_decode.c
index f3286f472d..71be6e6709 100644
--- a/doc/examples/hw_decode.c
+++ b/doc/examples/hw_decode.c
@@ -223,7 +223,7 @@ int main(int argc, char *argv[])
}
/* open the file to dump raw data */
- output_file = fopen(argv[3], "w+");
+ output_file = fopen(argv[3], "w+b");
/* actual decoding and dump the raw data */
while (ret >= 0) {