diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index 905c4ccbe66911e525450f23b8ca393a8b1e01f7..89857af45dc8f166acae2c1246e6d70535eece42 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -510,7 +510,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac if (c->comp == 0) { //Uncompressed data if (c->decomp_size < len) { - av_log(avctx, AV_LOG_ERROR, "decomp buffer too small\n"); + av_log(avctx, AV_LOG_ERROR, "Buffer too small\n"); return AVERROR_INVALIDDATA; } memcpy(c->decomp_buf, buf, len);