summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcompn <tempn@mi.rr.com>2014-03-07 17:07:37 -0500
committercompn <tempn@mi.rr.com>2014-03-07 17:07:37 -0500
commit84bccae8e9ac02e5088a684b6a7855896c2195eb (patch)
tree8f4e982ee833a33039922e3b5d240298bd7dd8a6 /doc
parent61ff0431ba8ed8f4b447e4257547da1b1bec6019 (diff)
doc: fix typo
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/demuxing_decoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c
index 077fc87b5b..2ce4018c79 100644
--- a/doc/examples/demuxing_decoding.c
+++ b/doc/examples/demuxing_decoding.c
@@ -279,7 +279,7 @@ int main (int argc, char **argv)
audio_dec_ctx = audio_stream->codec;
audio_dst_file = fopen(audio_dst_filename, "wb");
if (!audio_dst_file) {
- fprintf(stderr, "Could not open destination file %s\n", video_dst_filename);
+ fprintf(stderr, "Could not open destination file %s\n", audio_dst_filename);
ret = 1;
goto end;
}