Commit 696a780c authored by Clément Bœsch's avatar Clément Bœsch

bintext: fix warning message wording.

parent 825dd135
...@@ -74,7 +74,7 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -74,7 +74,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
} else { } else {
switch(s->font_height) { switch(s->font_height) {
default: 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; s->font_height = 8;
case 8: case 8:
s->font = ff_cga_font; s->font = ff_cga_font;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment