Browse Source

bintext: fix warning message wording.

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
696a780c47
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/bintext.c

+ 1
- 1
libavcodec/bintext.c View File

@@ -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;


Loading…
Cancel
Save