diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-30 20:53:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-30 22:56:11 +0200 |
commit | be73d76b34481686020e423ccabcca77042d0ede (patch) | |
tree | 14f8716e1025f8203304a845e65c8a98b2424b67 /libavcodec/pgssubdec.c | |
parent | d7537a6fce140876405a66f059f14e190527388d (diff) | |
download | ffmpeg-be73d76b34481686020e423ccabcca77042d0ede.tar.gz |
cosmetics: fix some then/than typos
Diffstat (limited to 'libavcodec/pgssubdec.c')
-rw-r--r-- | libavcodec/pgssubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pgssubdec.c b/libavcodec/pgssubdec.c index 9546c38882..71b8242e70 100644 --- a/libavcodec/pgssubdec.c +++ b/libavcodec/pgssubdec.c @@ -198,7 +198,7 @@ static int parse_picture_segment(AVCodecContext *avctx, /* Make sure the bitmap is not too large */ if (avctx->width < width || avctx->height < height) { - av_log(avctx, AV_LOG_ERROR, "Bitmap dimensions larger then video.\n"); + av_log(avctx, AV_LOG_ERROR, "Bitmap dimensions larger than video.\n"); return -1; } |