diff options
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index f78a0a21b2..66149cc3e7 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -796,7 +796,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, cfrm->size + data_size + FF_INPUT_BUFFER_PADDING_SIZE); // explicit check needed as memcpy below might not catch a NULL if (!cfrm->data) { - av_log(f->avctx, AV_LOG_ERROR, "realloc falure"); + av_log(f->avctx, AV_LOG_ERROR, "realloc failure"); return -1; } |