Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-10-15 17:20:35 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-10-15 17:35:49 +0400
commite56b3a5ebb124b6788f713dda83d77a1d639ec24 (patch)
treeb030b30f95e92a5bebba55000e7437ef4785c2b4 /doc/examples/muxing.c
parente75357ea7c8c048b8f0ab3088db648d9b0917a18 (diff)
examples/muxing: fix case inconsistency in message
Diffstat (limited to 'doc/examples/muxing.c')
-rw-r--r--doc/examples/muxing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index f46f0be386..6daeb9e7ca 100644
--- a/doc/examples/muxing.c
+++ b/doc/examples/muxing.c
@@ -98,7 +98,7 @@ static void open_audio(AVFormatContext *oc, AVCodec *codec, AVStream *st)
/* open it */
if (avcodec_open2(c, codec, NULL) < 0) {
- fprintf(stderr, "could not open codec\n");
+ fprintf(stderr, "Could not open codec\n");
exit(1);
}