cosmetics: Fix "dont" "wont" "doesnt" typos

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Timothy Gu
2013-06-28 17:24:26 -07:00
committed by Michael Niedermayer
parent fc736a99ea
commit a9bbf59be7
11 changed files with 13 additions and 13 deletions

View File

@@ -244,7 +244,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
// OS/2 bitmap, 3 bytes per palette entry
if ((hsize-ihsize-14) < (colors << 2)) {
if ((hsize-ihsize-14) < colors * 3) {
av_log(avctx, AV_LOG_ERROR, "palette doesnt fit in packet\n");
av_log(avctx, AV_LOG_ERROR, "palette doesn't fit in packet\n");
return AVERROR_INVALIDDATA;
}
for (i = 0; i < colors; i++)