[FFmpeg-cvslog] examples/muxing: fix case inconsistency in message

Stefano Sabatini git at videolan.org
Mon Oct 15 15:36:58 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Mon Oct 15 15:20:35 2012 +0200| [e56b3a5ebb124b6788f713dda83d77a1d639ec24] | committer: Stefano Sabatini

examples/muxing: fix case inconsistency in message

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e56b3a5ebb124b6788f713dda83d77a1d639ec24
---

 doc/examples/muxing.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index f46f0be..6daeb9e 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);
     }
 



More information about the ffmpeg-cvslog mailing list