From 696a780c47f57009727597509cc1c018c1c3152d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 6 Oct 2011 18:42:28 +0200 Subject: [PATCH] bintext: fix warning message wording. --- libavcodec/bintext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;