diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-23 21:00:17 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-07-23 21:00:17 +0000 |
commit | c9a96ec3c7b515ed3cfaf6614ed75da03b63512e (patch) | |
tree | d7541b3347e3740a65742df579b1a949e5ffca17 /libavcodec/iff.c | |
parent | ddcb99bb51513ef1f5e5f48d3dd3403da4608d10 (diff) | |
download | ffmpeg-c9a96ec3c7b515ed3cfaf6614ed75da03b63512e.tar.gz |
cosmetics: iff: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/iff.c')
-rw-r--r-- | libavcodec/iff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 6f11f58587..fe95357d21 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -145,7 +145,7 @@ static int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) int palette_size = avctx->extradata_size - AV_RB16(avctx->extradata); if (avctx->bits_per_coded_sample > 8) { - av_log(avctx, AV_LOG_ERROR, "bit_per_coded_sample > 8 not supported\n"); + av_log(avctx, AV_LOG_ERROR, "bits_per_coded_sample > 8 not supported\n"); return AVERROR_INVALIDDATA; } |