summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-09-01 13:15:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-01 15:59:30 +0200
commit53241b5dc781471c9535a1d24ec4ece53f834f22 (patch)
tree649d02bdb2e118bfd639e8d37ff5fbb41b9282ad /libavcodec/4xm.c
parent08277a45c33f2e96dcef9878c6dafdeac9a01597 (diff)
lavc: add missing new line to some messages
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c
index 9a45b1b33e..1eaae48889 100644
--- a/libavcodec/4xm.c
+++ b/libavcodec/4xm.c
@@ -836,7 +836,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 falure\n");
return -1;
}