diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-10-15 15:20:35 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-10-15 15:35:49 +0200 |
commit | e56b3a5ebb124b6788f713dda83d77a1d639ec24 (patch) | |
tree | b030b30f95e92a5bebba55000e7437ef4785c2b4 | |
parent | e75357ea7c8c048b8f0ab3088db648d9b0917a18 (diff) | |
download | ffmpeg-e56b3a5ebb124b6788f713dda83d77a1d639ec24.tar.gz |
examples/muxing: fix case inconsistency in message
-rw-r--r-- | doc/examples/muxing.c | 2 |
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); } |