diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-06 18:42:28 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-06 18:42:42 +0200 |
commit | 696a780c47f57009727597509cc1c018c1c3152d (patch) | |
tree | 78614cb1ebe2c1abfd975162405e33f5a6bc4357 | |
parent | 825dd135d829d85778e6c37f685a6088fef01b2e (diff) | |
download | ffmpeg-696a780c47f57009727597509cc1c018c1c3152d.tar.gz |
bintext: fix warning message wording.
-rw-r--r-- | libavcodec/bintext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c index 31456d399f..d183ba0512 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -74,7 +74,7 @@ static av_cold int decode_init(AVCodecContext *avctx) } else { switch(s->font_height) { default: - av_log(avctx, AV_LOG_WARNING, "font height %i not support\n", s->font_height); + av_log(avctx, AV_LOG_WARNING, "font height %i not supported\n", s->font_height); s->font_height = 8; case 8: s->font = ff_cga_font; |