diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-06-30 18:39:11 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-06-30 18:39:11 +0000 |
commit | 285ea3e30ab7638eccf8f0b9e1bb0ef36a8e1be0 (patch) | |
tree | 2e27fb6cad8bcb778e9c87a34dcfdb97ef36e8cb /libavcodec | |
parent | a40b2c2a4b303135631f9e25c632c4ca2f3a3048 (diff) | |
download | ffmpeg-285ea3e30ab7638eccf8f0b9e1bb0ef36a8e1be0.tar.gz |
Clean up error message
Originally committed as revision 14039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 831b34638f..4f77ada45b 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -251,7 +251,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data, if (buf_size < avctx->block_align) { av_log(avctx, AV_LOG_ERROR, - "ffra288: Error! Input buffer is too small [%d<%d]\n", + "Error! Input buffer is too small [%d<%d]\n", buf_size, avctx->block_align); return 0; } |